扫码一下
查看教程更方便
_.findLastIndex(array, predicate, [context])
findLastIndex() 方法使用应用于每个元素的predicate函数返回数组中元素的最后一个索引。
var _ = require('underscore');
var list = [1, 2, 4, 5, 6]
//示例: 获取最后一个偶数的索引
result = _.findLastIndex(list, function(x){ return x % 2 == 0} );
console.log(result)
list = [{name: 'Joe', age: 40}, {name: 'Rob', age: 60},, {name: 'Julie', age: 60}];
//示例: 获取最后一个age为60的元素的索引
result = _.findLastIndex(list, function(x){ return x.age == 60} );
console.log(result)
上面示例运行结果如下