码迷,mamicode.com
首页 > 编程语言 > 详细

js数组去重方法封装

时间:2019-05-31 11:47:00      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:bsp   temp   uniq   js数组   数组去重   this   func   i++   color   

 

Array.prototype.unique = function (){
    var temp = {},
    arr = [],
    len = this.length;
    for(var i = 0; i < len; i++){
        if(!temp[this[i]]){
            temp[this[i]] = ‘abc‘;
            arr.push(this[i]);
        }
    }
    return arr;
}        

 

js数组去重方法封装

标签:bsp   temp   uniq   js数组   数组去重   this   func   i++   color   

原文地址:https://www.cnblogs.com/summer-qd/p/10954364.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!