Converts a string to uppercase returning Uppercase as type
toUpperCase('Hello, world!') // 'HELLO, WORLD!' Copy
toUpperCase('Hello, world!') // 'HELLO, WORLD!'
The string type.
The string to convert.
The converted string.
Converts a string to uppercase returning Uppercase
as typeExample