Node.js examples for String:String Value
Calculate string hash code
String.prototype.hashCode = function() { for(var ret = 0, i = 0, len = this.length; i < len; i++) { ret = (31 * ret + this.charCodeAt(i)) << 0; }/*from w w w .ja va2 s . c om*/ return ret; };