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

JS数组去重

时间:2017-05-07 21:58:04      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:charset   set   index   方法   javascrip   cti   数组去重   body   dex   

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>用对象方法实现数组去重</title>
</head>
<body>
<script>
Array.prototype.unique = function() {
var newArr = [];
for(var i = 0;i<this.length;i++) {
if(newArr.indexOf(this[i]) == -1) {
newArr.push(this[i]);
}
}
return newArr;
};
var arr = [1,3,1,2];
console.log(arr.unique());
</script>
</body>
</html>

  

JS数组去重

标签:charset   set   index   方法   javascrip   cti   数组去重   body   dex   

原文地址:http://www.cnblogs.com/terry6/p/6822346.html

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