Por que em “return acumulador + nota” não é “return acumulador += nota”?
Por que em “return acumulador + nota” não é “return acumulador += nota”?
Oi Luidi
Sintaxe básica da soma: array. reduce( (total, valorCorrente) => total + valorCorretnte, valorInicial)
const valores = [8, 7, 9, 10, 6];
const soma = notas.reduce( (total, valorCorrente) => total + valorCorrente, 0);
console.log(soma); // 40