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