javascript数组去重
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript数组去重相关的知识,希望对你有一定的参考价值。
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数组去重的主要内容,如果未能解决你的问题,请参考以下文章