![]() |
VOOZH | about |
Lodash _.lastIndexOf() method is like the _.indexOf method except that it iterates over elements of an array from right to left.
_.lastIndexOf(array, value, [fromIndex=array.length-1]);Note: If the value is not found in the array -1 is returned.
Example 1: In this example, we are finding the index of the 2 in a given array by the use of the _lastIndexOf() method.
Output:
👁 ImageExample 2: In this example, we are finding the index of the 2 from 2 index number in a given array by the use of the _lastIndexOf() method.
Output:
👁 ImageExample 3: In this example, we are finding the index of the 4 in a given array by the use of the _lastIndexOf() method and it is returning -1 as it is not present in that array.