-1 is returned by findIndex() method when nothing is found.
This commit is contained in:
parent
f2e27fd449
commit
0c8da42eb5
1 changed files with 1 additions and 1 deletions
|
@ -305,7 +305,7 @@ In real life arrays of objects is a common thing, so the `find` method is very u
|
||||||
|
|
||||||
Note that in the example we provide to `find` the function `item => item.id == 1` with one argument. Other arguments of this function are rarely used.
|
Note that in the example we provide to `find` the function `item => item.id == 1` with one argument. Other arguments of this function are rarely used.
|
||||||
|
|
||||||
The [arr.findIndex](mdn:js/Array/findIndex) method is essentially the same, but it returns the index where the element was found instead of the element itself.
|
The [arr.findIndex](mdn:js/Array/findIndex) method is essentially the same, but it returns the index where the element was found instead of the element itself and returns `-1` when nothing is found.
|
||||||
|
|
||||||
### filter
|
### filter
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue