Nodejs Array Each each(fn)

Here you can find the source of each(fn)

Method Source Code

// Depends on primitives.js
Array.prototype.each = function(fn) {
  for(var i = 0; i < this.length; i++) {
    fn(i, this[i]);//from   w  w  w . j a va2 s. c  om
  };
};

Related

  1. each(fn)
    Array.prototype.each = function(fn) {
        if (!fn) return false;
        for(let i = 0, len = this.length; i < len; i++) {
            if (fn(this[i], i) === false) return false;
    
  2. each(fn)
    Array.prototype.each = function(fn) {
      for (var i = 0; i < this.length; i++) fn(this[i]);
    
  3. each(fn)
    Array.prototype.each = function(fn)
      for (var i=0; i<this.length; i++)
        fn.apply(this[i], [i]);
    };
    
  4. each(fn)
    Array.prototype.each = function (fn) {
      var i = 0, length = this.length, ret;
      fn = typeof fn === 'function' ? fn : function () {};
      for (; i < length; i++) {
        ret = fn.call(this[i], i, this[i]);
        if (ret === false || ret !== undefined && ret !== true) {
          return ret;
      return this;
    };
    
  5. each(fn)
    Array.prototype.each = function(fn){
        fn = fn || Function.K;
         var a = [];
         var args = Array.prototype.slice.call(arguments, 1);
         for(var i = 0; i < this.length; i++){
             var res = fn.apply(this,[this[i],i].concat(args));
             if(res != null) a.push(res);
         return a;
    ...
    
  6. each(fn, last)
    Array.prototype.each = function(fn, last) {
        if (typeof fn != "function") return false;
        for (var index = 0; index < this.length; index++) {
                fn(this[index], index);
        if (last) last();
    };
    
  7. each(fnCallback)
    Array.prototype.each = function(fnCallback) {
        var value = null;
        for (var elementIndex in this) {
            if (this.hasOwnProperty(elementIndex)) {
                value = fnCallback.apply(this[elementIndex], [elementIndex, value]);
        return (value) ? value : this;
    };
    ...
    
  8. each(fun)
    Array.prototype.each = function(fun) {
        for (var i = 0; i < this.length; i++) {
            fun(this[i]);
    };
    
  9. each(fun)
    function emptyFn() {}
    function random(n) {
        return +n ? Math.floor(Math.random() * (n+1)) : Math.random();
    Array.prototype.each = Object.prototype.each = Function.prototype.each = function(fun) {
        for (var key in this) {
            if (this.hasOwnProperty && this.hasOwnProperty(key)) {
                if (fun.call(this, this[key], key, this) === false) {
                    return;
    ...