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

javacript的Array 去除重复项

时间:2017-07-19 14:06:19      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:res   class   对象   prot   tun   str   prototype   get   ret   

去除数组中重复的对象。
Array.prototype.getUnique = function() {
        var hash = {}, result = [], key; 
        for ( var i = 0, l = this.length; i < l; ++i ) {
            key = JSON.stringify(this[i]);
            if ( !hash.hasOwnProperty(key) ) {
                hash[key] = true;
                result.push(this[i]);
            }
        }
        return result;
    }

 

javacript的Array 去除重复项

标签:res   class   对象   prot   tun   str   prototype   get   ret   

原文地址:http://www.cnblogs.com/baogp/p/7205003.html

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