Here you can find the source of hashCode()
// Extends the String prototype String.prototype.hashCode = function() { var hash = 0;/*from w w w . j av a 2 s . c o m*/ if(this.length == 0) return hash; for(i = 0; i < this.length; i++) { char = this.charCodeAt(i); hash = ((hash<<5)-hash)+char; hash = hash & hash; } return hash; };
String.prototype.hashCode = function(){ var hash = 0; if (this.length == 0) return hash; for (i = 0; i < this.length; i++) { char = this.charCodeAt(i); hash = ((hash<<5)-hash)+char; hash = hash & hash; return hash; ...
String.prototype.hashCode = function() { var hash = 0, i, chr, len; if (this.length == 0) return hash; for (i=0,len=this.length;i<len;i++){ chr = this.charCodeAt(i); ...
String.prototype.hashCode = function(){ var hash = 0, i, char; if (this.length == 0) return hash; for (i = 0; i < this.length; i++) { char = this.charCodeAt(i); hash = ((hash<<5)-hash)+char; hash = hash & hash; return hash; ...
String.prototype.hashCode = function() { var hash = 0, i, chr, len; if (this.length === 0) return hash; for (i = 0, len = this.length; i < len; i++) { chr = this.charCodeAt(i); hash = ((hash << 5) - hash) + chr; hash |= 0; return hash; ...
String.prototype.hashCode = function() var hash = 0; if (this.length == 0) return hash; for (i = 0; i < this.length; i++) char = this.charCodeAt(i); hash = ((hash<<5)-hash)+char; hash = hash & hash; ...
String.prototype.hashCode = function() { var hash = 0, i, chr, len; if (this.length == 0) return hash; for (i = 0, len = this.length; i < len; i++) { chr = this.charCodeAt(i); hash = ((hash << 5) - hash) + chr; hash |= 0; return hash; ...
String.prototype.hashCode = function(){ var hash = 0; if (this.length === 0) return hash; for (i = 0; i < this.length; i++) { chr = (this.charCodeAt(i) * 2.2); hash = ((hash<<32)-hash)+chr; hash = hash & hash; return hash; ...
String.prototype.hashCode = function() { var hash = 0; if (this.length == 0) return hash; for (i = 0; i < this.length; i++) { char = this.charCodeAt(i); hash = ((hash << 5) - hash) + char; hash = hash & hash; return hash; ...
String.prototype.hashCode = function () { var hash = 0; if (this.length === 0) { return hash; for (i = 0; i < this.length; i++) { char = this.charCodeAt(i); hash = ((hash<<5)-hash)+char; hash = hash & hash; ...