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

9 lines
136 B
JavaScript
Raw Normal View History

export function sum(values) {
2022-10-28 22:22:35 +00:00
let soma = 0;
for(let i = 0 ; i < values.length ; i++) {
soma += values[i];
}
return soma;
}