Node.js examples for Array:Array Value
Returns the maximum value of the array
Array.prototype.max = function() { return Math.max.apply(Math, this); };