Skip to content

Commit bae148b

Browse files
committed
fixes
1 parent 5191617 commit bae148b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/05-data-types/05-array-methods/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,7 @@ Most used array methods:
694694
- `splice` -- delete and insert elements at the given position.
695695
- `sort` -- sorts the array.
696696
- `indexOf/lastIndexOf`, `includes` -- look for the value.
697-
- `find/filter` -- return first/all values satisfying the given condition.
697+
- `find/filter` -- return first/all values satisfying the given condition, `findIndex` is like `find`, but returns the index instead of a value.
698698
- `forEach` -- runs a function for each element.
699699
- `map` -- transforms the array through the function.
700700
- `reduce/reduceRight` -- calculates a single value based on array.

0 commit comments

Comments
 (0)