feat(sum): desenvolvimento da função

This commit is contained in:
Lorena Camila Coelho Máximo 2022-11-01 00:18:35 -04:00
parent a7dff396b4
commit ff22b86c98

View File

@ -1,4 +1,9 @@
export function sum(values) {
// implementar logica aqui
let total = 0;
for (let i = 0; i < values.length; i++) {
total += values[i]
}
return total
/* return values.reduce((acumulador, valorAtual) => acumulador + valorAtual, 0) */
}