Sintaxe
_.findLastIndex(array, predicate, [context])
O método findLastIndex retorna o último índice do elemento na matriz usando a função de predicado aplicada a cada elemento.
Exemplo
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)
Salve o programa acima em tester.js. Execute o seguinte comando para executar este programa.
Comando
\>node tester.js
Resultado
4
3