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

    • V

    Parameters

    • object: Record<string, V>

      The object to inspect.

    • Optional predicate: Predicate<V>

      The function invoked per iteration.

      Optional

    Returns string

    Returns the key of the matched element, else undefined.

    Since

    5.2.0

    See

    [[find]], [[findIndex]], [[findLast]], [[findLastIndex]], [[findLastKey]]

    Example

    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)
  • Parameters

    • object: any
    • Optional predicate: any[]
      Optional

    Returns string

  • Parameters

    • object: any
    • Optional predicate: string
      Optional

    Returns string