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

javascript数组去重

时间:2016-03-03 14:57:37      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:js

var myArr=[1,2,1,2,2,3,3,4,4,5,5,6,6];

function myRemove(){

	this.sort();
	for(i=0;i<this.length;i++){
		for(j=0;j<this.length-i;j++){
				if(this[j]==this[j+1]){
					this.splice(j+1,1);
				}
			
			}
		}
	return this;
	}
	
Array.prototype.myRemove=myRemove;
alert(myArr.myRemove());


javascript数组去重

标签:js

原文地址:http://11272569.blog.51cto.com/11262569/1747115

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