Read the string, converts it to uppercase and returns the uppercase version of this string.
ucase( String )
string | The string which should be converted to uppercase. |
---|
The string in uppercases.
ucase("abc"); // Returns the string "ABC". ucase("Abc"); // Returns the string "ABC".