The object to inspect.
Optional
predicate: Predicate<V>The function invoked per iteration.
Returns the key of the matched element,
else undefined
.
5.2.0
[[find]], [[findIndex]], [[findLast]], [[findLastIndex]], [[findLastKey]]
const users = {
'barney': { 'age': 36, 'active': true },
'fred': { 'age': 40, 'active': false },
'pebbles': { 'age': 1, 'active': true }
}
findKey(users, ({ age }) => age < 40)
// => 'barney' (iteration order is not guaranteed)
Optional
predicate: any[]Optional
predicate: string
This method is like
find
except that it returns the key of the first elementpredicate
returns truthy for instead of the element itself.