Nodejs Array Mean mean()

Here you can find the source of mean()

Method Source Code

Array.prototype.mean = function () {
  var sum = this.reduce(
    function (prev, cur) {
      return prev + cur;
    }//  w  w w  . j  a v a2 s  . c  om
  );

  return sum / this.length;
}

Related

  1. mean()
    Array.prototype.mean = function() {
        return !this.length ? 0
            : this.reduce(function(pre, cur, i) {
                return (pre * i + cur) / (i + 1);
                });
    console.log( [1,2,3,4,5].mean() );   
    console.log( [].mean() );            
    
  2. mean()
    Array.prototype.mean = function(){ 
      return this.reduce(function(previousMean, currentValue, i){
        return previousMean + (1/(i + 1))*(currentValue - previousMean);
      });
    };
    Array.prototype.median = function() {
       var values = this;
        values.sort( function(a,b) {return a - b;} );
        var half = Math.floor(values.length/2);
    ...
    
  3. mean()
    Array.prototype.mean = function () {
        var sum = this.reduce(function(previousValue, currentValue) {
            return previousValue + currentValue;
        });
        return sum / this.length;
    };
    
  4. mean()
    Array.prototype.mean = function() {
        mean = 0;
        for (var i = 0; i < this.length; i++) {
            mean += this[i];
        mean = mean / this.length;
        return mean;
    };
    
  5. mean()
    Array.prototype.mean = function() {
      var length = this.length;
      return this.total()/length;
    };