challenge-algorithms-v2.0/06-sum/index.js

9 lines
248 B
JavaScript

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) */
}