首页 > 代码库 > javacript的Array 去除重复项

javacript的Array 去除重复项

去除数组中重复的对象。
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 去除重复项