Node.js examples for Array:Array Operation
Calculate array average
if (typeof Array.prototype.average != 'function') { Array.prototype.average = function() { return this.sum() / this.length; };//from w w w.j av a 2 s. com }