.toUpper()
Description
toUpper returns the input string but in fully uppercase
Parameters
toUpper takes no parameters
Usage On Strings
num = "Hello World"
log num.toUpper()
// HELLO WORLD
Last updated
Was this helpful?