Convert to Uppercase

Assign the uppercase version of the string str to the variable upperCaseStr.
In JavaScript, you can use the .toUpperCase() method to convert all letters in a string to uppercase.
For example: 'hello'.toUpperCase() returns 'HELLO'.
JavaScript
Console