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

8 lines
140 B
JavaScript
Raw Normal View History

export function sum(values) {
// implementar logica aqui
let soma = 0
for(let i in values) {
soma += values[i]
}
return soma
}