![]() |
VOOZH | about |
Loadsh _.findIndex() method is used to find the index of the first occurrence of the element. It is different from indexOf because it takes the predicate function that iterates through each element of the array.
_.findIndex(array, [predicate=_.identity], fromIndex);Example 1: In this example, an element is searched starting from index 0 and printing the result according to the arrow function used in the _.findIndex() method.
Output:
👁 ImageExample 2: In this example, an element is looked after some index "i". Here element is present in the array but still the output is -1 because it is present at index 3 and the searching starts from index 5.