Javascript Array hashCode()

Description

Javascript Array hashCode()


Array.prototype.hashCode = function() {
    return ('ARRAY:[' + this.join(';') + ']').hashCode();
};



PreviousNext

Related