JS String Prototype ToUpperCase - thelastmile/FreeCodeCamp GitHub Wiki

JavaScript String.prototype.toUpperCase()

The JavaScript method .toUpperCase() returns the same string it was called on, but in all upper case.

Syntax

str.toUpperCase()

Examples

console.log("hello world".toUpperCase()); // Console will output "HELLO WORLD"

Source MDN