minor expansion

This commit is contained in:
Tommy Parnell
2022-05-17 19:44:17 -04:00
parent 6114bcfcd0
commit 6f71630336

View File

@@ -67,7 +67,7 @@ const hasOrange = shoppingList.some(item => item === "orange")
// hasOrange is true // hasOrange is true
``` ```
if the array does not have an orange: if the array does not have an orange in it, the result will be false instead of true:
```js ```js