似月是你
God helps those who help themselves.
天 道 酬 勤

从数组删除内容remove方法

 

从数组删除内容remove方法

 

// remove方法
    Array.prototype.remove = function(val) {
        var index = this.indexOf(val);
        if (index > -1) {
            this.splice(index, 1);
        }
    };

 

posted @ 2020-11-09 11:49  似月是你  阅读(414)  评论(0编辑  收藏  举报