¿Qué valor se imprime al ejecutar el siguiente código?
const numeros = [5, 10, 15];
const sumados = numeros.map(x => x + 5).reduce((acc, x) => acc + x, 0);
console.log(sumados);
¿Qué valor se imprime al ejecutar el siguiente código?
const numeros = [5, 10, 15];
const sumados = numeros.map(x => x + 5).reduce((acc, x) => acc + x, 0);
console.log(sumados);