From bae148bc88abbeb69f072f738c9ea85fbf196dd0 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Sat, 3 Jun 2017 10:26:01 +0300 Subject: [PATCH] fixes --- 1-js/05-data-types/05-array-methods/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.