What value is printed when executing the following code?
const values = [1, null, 3];
const added = values.map(x => x + 1);
console.log(added[1]);
What value is printed when executing the following code?
const values = [1, null, 3];
const added = values.map(x => x + 1);
console.log(added[1]);