Function findKey

  • This method is like find except that it returns the key of the first element predicate returns truthy for instead of the element itself.

    Type Parameters

    • T extends object

    Parameters

    • object: T

      The object to inspect.

    • predicate: ObjectIterator<T, boolean>

      The function invoked per iteration.

    Returns string | undefined

    Returns the key of the matched element, else undefined.

    1.1.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)