I\'m looking for a really quick, clean and efficient way to get the max \"y\" value in the following JSON slice:
[ { \"x\": \"8/11/2009\", \"y\": 0
ES6 solution
Math.max(...array.map(function(o){return o.y;}))
For more details see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/max