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