当前位置:编程学习 > JS >>

给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/>");
    });
   

 

摘自  木之原
补充:web前端 , JavaScript ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,