![]() |
VOOZH | about |
Lodash _.findLastIndex() function is used to find the element from the right of the array. Therefore giving the index of the last occurrence of the element in the array.
findLastIndex(array, [predicate=_.identity], fromIndex);It returns the index of the element if found else -1 is returned.
Example 1: In this example, we are getting the last index of element 2 that is present in the given array by the use of the lodash _.findLastIndex() function.
Output:
👁 ImageExample 2: In this example, we are using the lodash _.findLastIndex() functionand getting "-1" as the element 1 is not present in the given array.
Output:
👁 ImageExample 3: In this example, we are getting the last index of element 2 that is present in the given array of objects by the use of the lodash _.findLastIndex() function.