Here you can find the source of forEach
===
Array.prototype.forEach = Array.prototype.forEach || _forEach Array.prototype.every = Array.prototype.every || _every Array.prototype.indexOf = Array.prototype.indexOf || function(member) { for(var idx = 0; idx < this.length; ++idx) { if(this[idx] === member) { return idx return -1 ...
"use strict" Array.prototype.forEach = function(a) { for (let i = 0; i < this.length; i++) a(this[i], i, this)
Array.prototype.forEach = Array.prototype.forEach || function(action, index) { for (var i=0,l=this.length; i<l; i++) { action(this[i], index); };
Array.prototype.forEach = function(callback){ let arr = this; for (var i = 0; i < arr.length; i++) { callback(arr[i], i, arr);