Takaro - v0.4.11
    Preparing search index...

    Function minBy

    • This method is like _.min except that it accepts iteratee which is invoked for each element in array to generate the criterion by which the value is ranked. The iteratee is invoked with one argument: (value).

      Type Parameters

      • T

      Parameters

      • collection: List<T> | null | undefined
      • Optionaliteratee: ValueIteratee<T>

        The iteratee invoked per element.

      Returns T | undefined

      Returns the minimum value.

      var objects = [{ 'n': 1 }, { 'n': 2 }];

      _.minBy(objects, function(o) { return o.a; });
      // => { 'n': 1 }

      // using the `_.property` iteratee shorthand
      _.minBy(objects, 'n');
      // => { 'n': 1 }