Here you can find the source of isRepeat(arr)
Array.prototype.isRepeat = function (arr) { var hash = {}; for (var i = 0, elem; (elem = arr[i]) != null; i++) { if (hash[arr[i]]) { return true; }/* w w w.j av a2 s. c o m*/ hash[arr[i]] = true; } return false; }
Array.prototype.isRepeat = function (){ var nary=this.sort(); for(var i=0;i<this.length;i++){ if (nary[i]==nary[i+1]){ return true; return false; }; ...