给js原生Array增加each方法

   Array.prototype.each = function(fn)
{
return this.length ? [fn(this.slice(0,1))].concat(this.slice(1).each(fn)) : [];
};

[1,2,3,4].each(function(x){
document.write(x + "<br/>");
});
posted @ 2012-04-03 22:11  水之原  阅读(2268)  评论(0编辑  收藏  举报