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).
_.min
iteratee
array
Optional
The iteratee invoked per element.
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 } Copy
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 }
This method is like
_.min
except that it acceptsiteratee
which is invoked for each element inarray
to generate the criterion by which the value is ranked. The iteratee is invoked with one argument: (value).