Javascript Array forEach(cb)
'use strict';/*from w w w .j av a2 s . c om*/ Array.prototype.forEach = function(cb) { for(let i = 0 ; i < this.length ; i++) { cb(this[i]); } };
Array.prototype.forEach = function(cb){ for(var k in this) cb(this[k]); };