Underscore.JS - metodo findIndex

Sintassi

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

Il metodo findIndex restituisce il primo indice dell'elemento nell'array utilizzando la funzione predicato applicata a ciascun elemento.

Esempio

var _ = require('underscore');

var list = [1, 2, 4, 5, 6]
//Example: get index of first even number
result = _.findIndex(list, function(x){ return x % 2 == 0} );
console.log(result)

list = [{name: 'Joe', age: 40}, {name: 'Rob', age: 60}];
//Example: get index of employee of age: 60
result = _.findIndex(list, function(x){ return x.age == 60} );
console.log(result)

Salva il programma sopra in formato tester.js. Eseguire il comando seguente per eseguire questo programma.

Comando

\>node tester.js

Produzione

1
1