Lodash – lastIndexOf method

  • Post author:
  • Post category:Lodash
  • Post comments:1 Comment
Lodash - lastIndexOf method

Syntax Of Lodash lastIndexOf method

_.lastIndexOf(array, value, [fromIndex=array.length-1])

This Lodash lastIndexOf method is like _.indexOf except that it iterates over elements of an array from right to left.

Arguments

  • array (Array) − The array to inspect.
  • value (*) − The value to search for.
  • [fromIndex=array.length-1] (number) − The index to search from.

Output

  • (number) − Returns the index of the matched value, else -1.

Example

var _ = require('lodash');
var list = [1, 2, 3, 2, 5, 6, 2];

var result = _.lastIndexOf(list,2)
console.log(result);

var result = _.lastIndexOf(list,2,3)
console.log(result);

Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

Output

6
3

Next Topic – Click Here

This Post Has One Comment

Leave a Reply