Here you can find the source of inject(funct)
Array.prototype.inject = function(funct) { var start = this.shift(); var accum = start; var createInjection = function(num){ if (accum = funct(accum, num)); };// w ww . j a va 2s .c o m this.myEach(createInjection); this.unshift(start); return accum; }; Array.prototype.myEach = function(funct) { for (var i = 0; i < this.length; i++) { funct(this[i]); } };
===
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) { ...
Array.prototype.inject = function(command, accumulator){ var start = 0; if(!accumulator){ accumulator = this[0] start += 1; this.slice(start,this.length).each(function(el){ accumulator = command(accumulator, el); }); ...
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) { ...
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); };
Array.prototype.inject = function(memo, fn) { for(var i = 0; i < this.length; i++) { memo = fn(memo, i, this[i]); }; return memo; };
Array.prototype.inject = function(memo, iterator, context) { this.each(function(value, index) { memo = iterator.call(context, memo, value, index); }); return memo;
Array.prototype.inject = function(result, injectFunction) { this.each(function(element) { result = injectFunction(result, element); }); return result; };