Function findLastKey

  • This method is like findKey except that it iterates over elements of a collection in the opposite order.

    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

    Example

    var users = {
    'barney': { 'age': 36, 'active': true },
    'fred': { 'age': 40, 'active': false },
    'pebbles': { 'age': 1, 'active': true }
    };

    findLastKey(users, function(o) { return o.age < 40; });
    // => returns 'pebbles' assuming `findKey` returns 'barney'

    // The `matches` iteratee shorthand.
    findLastKey(users, { 'age': 36, 'active': true });
    // => 'barney'

    // The `matchesProperty` iteratee shorthand.
    findLastKey(users, ['active', false]);
    // => 'fred'

    // The `property` iteratee shorthand.
    findLastKey(users, 'active');
    // => 'pebbles'
  • Parameters

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

    Returns string

  • Parameters

    • object: any
    • Optional predicate: string
      Optional

    Returns string