Javascript String toUpper()
toUpper()
String.prototype.toUpper = function() { return this.replace(/[a-z]/g, (x) => String.fromCharCode(x.charCodeAt(0) - 32)); };