We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5191617 commit bae148bCopy full SHA for bae148b
1-js/05-data-types/05-array-methods/article.md
@@ -694,7 +694,7 @@ Most used array methods:
694
- `splice` -- delete and insert elements at the given position.
695
- `sort` -- sorts the array.
696
- `indexOf/lastIndexOf`, `includes` -- look for the value.
697
-- `find/filter` -- return first/all values satisfying the given condition.
+- `find/filter` -- return first/all values satisfying the given condition, `findIndex` is like `find`, but returns the index instead of a value.
698
- `forEach` -- runs a function for each element.
699
- `map` -- transforms the array through the function.
700
- `reduce/reduceRight` -- calculates a single value based on array.
0 commit comments