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

js 数组去重

时间:2020-02-16 20:54:49      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:turn   return   inf   mamicode   his   length   class   bsp   去重   

代码展示:

  

Array.prototype.delRepeat = function () {
    var hash= {}, arr = [], len = this.length;
    for (var i = 0; i < len; i++) {
        if (!hash[this[i]]) {
            hash[this[i]] = "a";
            arr.push(this[i]);
        }
    }
    return arr;
}

效果展示:

技术图片

 

js 数组去重

标签:turn   return   inf   mamicode   his   length   class   bsp   去重   

原文地址:https://www.cnblogs.com/punisher999/p/12318304.html

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