minBy
Returns the minimum 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.min()to get the minimum value.
Returns the minimum 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.min() to get the minimum value.