This method is like max 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).
max
iteratee
array
5.8.0
const objects = [{ 'n': 1 }, { 'n': 2 }]maxBy(objects, ({ n }) => n)// => { 'n': 2 } Copy
const objects = [{ 'n': 1 }, { 'n': 2 }]maxBy(objects, ({ n }) => n)// => { 'n': 2 }
The array to iterate over.
Optional
The iteratee invoked per element.
Returns the maximum value.
This method is like
max
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).Since
5.8.0
Example