Sintaxis
_.findLastIndex(array, predicate, [context])
El método findLastIndex devuelve el último índice del elemento en la matriz utilizando la función de predicado aplicada a cada elemento.
Ejemplo
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)
Guarde el programa anterior en tester.js. Ejecute el siguiente comando para ejecutar este programa.
Mando
\>node tester.js
Salida
4
3