Here you can find the source of unique()
Array.prototype.unique=function(){ var n=[];// w w w. ja v a 2 s .co m for(var i=0;i<this.length;i++){ if(n.indexOf(this[i])==-1) n.push(this[i]); } return n; }
Array.prototype.unique = function() { var a = []; var l = this.length; for(var i=0; i<l; i++) { for(var j=i+1; j<l; j++) { if (this[i] === this[j]) j = ++i; a.push(this[i]); return a; }; Array.prototype.clean = function(deleteValue) { for (var i = 0; i < this.length; i++) { if (this[i] == deleteValue) { this.splice(i, 1); i--; return this; }; String.prototype.contains = function(it) { return this.indexOf(it) != -1; };
Array.prototype.unique = function() { var a = []; var l = this.length; for(var i=0; i<l; i++) { for(var j=i+1; j<l; j++) { if (this[i] === this[j]) j = ++i; a.push(this[i]); return a; }; Date.prototype.today = function () { return ((this.getDate() < 10)?"0":"") + this.getDate() +"."+(((this.getMonth()+1) < 10)?"0":"") + (this.getMonth()+1) +"."+ this.getFullYear(); Date.prototype.timeNow = function () { return ((this.getHours() < 10)?"0":"") + this.getHours() +":"+ ((this.getMinutes() < 10)?"0":"") + this.getMinutes() +":"+ ((this.getSeconds() < 10)?"0":"") + this.getSeconds();
Array.prototype.unique = function() { return [... new Set(this)]
Array.prototype.unique=function(){ return this.filter(function (x,i,self){ return self.indexOf(x)===i; });
Array.prototype.unique = function() { return this.sort().reduce( (a,e) => e === a[a.length-1] ? a : (a.push(e), a), [] )
Array.prototype.unique = function (){ return Array.from(new Set(this)); let testArray = [1,2,5,4,2,6,1]; console.log(testArray.unique());
Array.prototype.unique = function() { var o = {}, i, l = this.length, r = []; for(i=0; i<l;i+=1) o[this[i]] = this[i]; for(i in o) r.push(o[i]); return r; };
Array.prototype.unique = function () { var o = new Object(); var i, e; for (i = 0; e = this[i]; i++) { o[e] = 1 }; var a = new Array(); for (e in o) { a.push (e) ...
Array.prototype.unique = function(){ 'use strict'; this.sort(); var ret = [this[0]]; for(var index=0; index < this.length; index++){ if(this[index] != ret[ret.length - 1]){ ret.push(this[index]); return ret; };