Feat(Desafio_2.6): Cria resposta desafio 2.6

This commit is contained in:
Rhayllon Daudt 2022-10-29 04:20:25 -03:00
parent 2a1ac50a22
commit e35e6c76f3

View File

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