Nodejs Array Inject inject(command, accumulator)

Here you can find the source of inject(command, accumulator)

Method Source Code

Array.prototype.inject = function(command, accumulator){
  var start = 0;/*from www.  j a v  a 2 s.co  m*/
  if(!accumulator){
    accumulator = this[0]
    start += 1;
  }

  this.slice(start,this.length).each(function(el){
    accumulator = command(accumulator, el);
  });

  return accumulator;
}

Related

  1. inject
    ===
    
  2. inject(callback)
    Array.prototype.inject = function (callback) {
      var accumulator = this[0];
      var body = this.slice(1, this.length);
      body.each(function (el) {
        accumulator = callback(accumulator, el);
      });
      return accumulator;
    };
    var add = function (a, el) {
    ...
    
  3. inject(element)
    var express = require('express')
      , app = express()
      , server = require('http').createServer(app)
      , io = require('socket.io').listen(server);
    server.listen(3000);
    app.use(express.static(__dirname + '/public'));
    var messages = new Array()
    Array.prototype.inject = function(element) {
        if (this.length >= 5) {
    ...
    
  4. inject(funct)
    Array.prototype.inject = function(funct) {
      var start = this.shift();
      var accum = start;
      var createInjection = function(num){
        if (accum = funct(accum, num));
      };
      this.myEach(createInjection);
      this.unshift(start);
      return accum;
    ...
    
  5. inject(index, val)
    Array.prototype.inject = function(index, val){
      if(index <0){return this;}
      var a = this.slice(0, index), b = this.splice(index, this.length-index);
      a[index] = val;
      return a.concat(b);
    };
    
  6. inject(memo, fn)
    Array.prototype.inject = function(memo, fn) {
      for(var i = 0; i < this.length; i++) {
        memo = fn(memo, i, this[i]);
      };
      return memo;
    };