Lodash findLastIndex method
语法:
_.findLastIndex(array, [predicate=_.identity], [fromIndex=array.length-1])
This method is like _.findIndex except that it iterates over elements of collection from right to left.
参数
array (Array) − The array to inspect.
[predicate=_.identity] (Function) − The function invoked per iteration.
[fromIndex=array.length-1] (number) − The index to search from.
输出:
(number) − Returns the index of the found element, else-1.
实例:
var _ = require('lodash');
var users = [
{ user: 'Sam', active: false },
{ user: 'Ted', active: true },
{ user: 'Julie', active: false }
];
var result = _.findLastIndex(users, function(user) { return !user.active; });
console.log(result);
result = _.findLastIndex(users, ['active', false]);
console.log(result);
Save the above program in
tester.js. Run the following command to execute this program.
命令:
输出: