Array.prototype.each = function (handler) { for (var i = 0; i < this.length; i++) { handler.call(this[i], i, this[i]); } return this; };//не забываем писать точку с запятой [0, 1, 2].each(function (i) { alert(i); });