Question #265

Author: ira
tags: JavaScript  
let str1 = 'a';
const str2 = 'b';
str1.toUpperCase();
str2.toUpperCase();
console.log(str1, str2);
a, b
a, B
A, b
A, B
Strings are immutable in JS. toUpperCase() returns a new string.
Rate the difficulty of the question:
easyhard