Converts string, as space separated words, to upper case.
string
The string to convert.
Returns the upper cased string.
toUpperCase('Hello, world!')// => 'HELLO WORLD' Copy
toUpperCase('Hello, world!')// => 'HELLO WORLD'
Converts
string
, as space separated words, to upper case.