Nodejs Array Repeat Check isRepeat(arr)

Here you can find the source of isRepeat(arr)

Method Source Code

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;
}

Related

  1. isRepeat()
    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;
    };
    ...