The array to inspect.
Optional
predicate: anyThe function invoked per iteration.
Optional
fromIndex: numberThe index to search from.
Returns the index of the found element, else -1
.
var users = [
{ 'user': 'barney', 'active': false },
{ 'user': 'fred', 'active': false },
{ 'user': 'pebbles', 'active': true }
];
findIndex(users, function(o) { return o.user == 'barney'; });
// => 0
// The `matches` iteratee shorthand.
findIndex(users, { 'user': 'fred', 'active': false });
// => 1
// The `matchesProperty` iteratee shorthand.
findIndex(users, ['active', false]);
// => 0
// The `property` iteratee shorthand.
findIndex(users, 'active');
// => 2
This method is like
find
except that it returns the index of the first elementpredicate
returns truthy for instead of the element itself.