feat(sum): Utilizando for in, para interagir com propriedades enumeradas, funcional em todos os testes.

This commit is contained in:
Ramon Dias Ferreira 2022-10-29 19:30:33 -03:00
parent f98db45a03
commit 20a3ecf962

View File

@ -1,4 +1,8 @@
export function sum(values) {
// implementar logica aqui
let soma = 0
for(let i in values) {
soma += values[i]
}
return soma
}