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

前端面试-数组去重

时间:2018-05-19 14:50:17      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:log   his   i++   ++i   ons   prototype   cti   type   数组去重   

Array.prototype.quchong = function(){
var arr = this,
len = arr.length,
b = [],
i,
j;
for(var i=0;i<len;i++){
for(var j=i+1;j<len;j++){
if(arr[i]===arr[j]){
j = ++i;
}
}
b.push(arr[i]);
}
return b;
}

a = [1,2,3,2,1,4];
console.log(a.quchong())

前端面试-数组去重

标签:log   his   i++   ++i   ons   prototype   cti   type   数组去重   

原文地址:https://www.cnblogs.com/wcongrantulion/p/9060145.html

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