diff --git a/1-js/05-data-types/05-array-methods/article.md b/1-js/05-data-types/05-array-methods/article.md index 276d8871..a16707fc 100644 --- a/1-js/05-data-types/05-array-methods/article.md +++ b/1-js/05-data-types/05-array-methods/article.md @@ -694,7 +694,7 @@ Most used array methods: - `splice` -- delete and insert elements at the given position. - `sort` -- sorts the array. - `indexOf/lastIndexOf`, `includes` -- look for the value. -- `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. - `forEach` -- runs a function for each element. - `map` -- transforms the array through the function. - `reduce/reduceRight` -- calculates a single value based on array.