Javascript String upcase()
upcase()
String.prototype.upcase = function(){ return this.toUpperCase(); };
String.prototype.upcase = function () { return this.valueOf().toUpperCase(); };