forked from M3-Academy/challenge-algorithms-v2.0
feat(sum): Utilizando for in, para interagir com propriedades enumeradas, funcional em todos os testes.
This commit is contained in:
parent
f98db45a03
commit
20a3ecf962
@ -1,4 +1,8 @@
|
||||
export function sum(values) {
|
||||
// implementar logica aqui
|
||||
|
||||
let soma = 0
|
||||
for(let i in values) {
|
||||
soma += values[i]
|
||||
}
|
||||
return soma
|
||||
}
|
Loading…
Reference in New Issue
Block a user