maxBy
Returns the maximum value of an array, after mapping each element to a value using the provided function.
- Use
Array.prototype.map()
to map each element to the value returned byfn
. - Use
Math.max()
to get the maximum value.
Returns the maximum value of an array, after mapping each element to a value using the provided function.
Array.prototype.map()
to map each element to the value returned by fn
.Math.max()
to get the maximum value.