NewDash

    Function findIndex

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

      Parameters

      • array: any

        The array to inspect.

      • Optionalpredicate: any

        The function invoked per iteration.

      • OptionalfromIndex: number

        The index to search from.

      Returns number

      Returns the index of the found element, else -1.

      5.2.0

      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
    MMNEPVFCICPMFPCPTTAAATR