I am using javascript and I have a function that returns a text, I want to know how I can print the result of that function in the browser, try to instantiate it but return [Object object]
This is the code and I want you to return the hash
String.prototype.hashCode = function() {
var hash = 0, i, chr;
if (this.length === 0)
return hash;
for (i = 0; i < this.length; i++) {
chr = this.charCodeAt(i);
hash = ((hash << 5) - hash) + chr;
hash |= 0;
// Convert to 32bit integer
}
return hash;
};