What value is printed when executing the following code?
const numbers = [5, 10, 15];
const added = numbers.map(x => x + 5).reduce((acc, x) => acc + x, 0);
console.log(added);
What value is printed when executing the following code?
const numbers = [5, 10, 15];
const added = numbers.map(x => x + 5).reduce((acc, x) => acc + x, 0);
console.log(added);