Upper

type

returns

Getter

string

Explanation

Returns the string with all applicable characters transformed into their uppercase counterparts.

Examples

"Hello".upper == "HELLO"
"123".upper == "123"
"Hello, World!" == "HELLO, WORLD!"

Last updated