upper()
Syntax
upper(string)
Returns a new string representing the value of string converted to upper case.
Examples
print(upper('abC')); // 'ABC'
upper(string)
Returns a new string representing the value of string converted to upper case.
print(upper('abC')); // 'ABC'