react array get highest number code example
Example 1: filter biggest value javascript object
const max = data.reduce((prev, current) => (prev.y > current.y) ? prev : current)
Example 2: how to return the max and min of an array in javascript
function minMax(arr) {
return [Math.min(...arr), Math.max(...arr)];
}