Underscore.JS findLastIndex方法

Underscore.JS findLastIndex方法

语法

_.findLastIndex(array, predicate, [context])

findLastIndex方法通过对数组中的每个元素应用谓词函数来返回元素的最后一个索引。

示例

var _ = require('underscore');

var list = [1, 2, 4, 5, 6]
//Example: get index of last even number
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}];
//Example: get index of employee of age: 60
result = _.findLastIndex(list, function(x){ return x.age == 60} );
console.log(result)

将上述程序保存在 tester.js 中。运行以下命令来执行该程序。

命令

>node tester.js

输出

4
3

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程