Array.prototype.removeDuplicates = function (){ var temp=new Array(); this.sort(); for(i=0;i<this.length;i++) if(this[i]==this[i+1]) {continue} temp[temp.length]=this[i]; } return temp; }