javascript get max value of property in array code example
Example 1: find max of array of objects key
Math.max.apply(Math, array.map(function(o) { return o.y; }))
Example 2: how to find max number in array javascript
const array1 = [1, 3, 2];
console.log(Math.max(...array1));