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

JS 数组去重

时间:2015-07-27 18:12:33      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:

Array.prototype.unique3 = function(){ //数组去重
var res = [];
var json = {};
for(var i = 0; i < this.length; i++){
if(!json[this[i]]){
res.push(this[i]);
json[this[i]] = 1;
}
}
return res;
}

$scope.selectedShops=$scope.selectedShops.unique3();

JS 数组去重

标签:

原文地址:http://www.cnblogs.com/kelly007/p/4680503.html

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