What is printed when executing the following code?
const arr = ['a', 'b', 'c'];
const newArr = arr.map(letter => letter.toUpperCase());
console.log(newArr[0]);
What is printed when executing the following code?
const arr = ['a', 'b', 'c'];
const newArr = arr.map(letter => letter.toUpperCase());
console.log(newArr[0]);