Merge pull request 'Feat(Desafio_2.6): Cria resposta desafio 2.6' (#6) from Feature/Desafio_2.6 into develop

Reviewed-on: #6
This commit is contained in:
Rhayllon Daudt 2022-10-29 07:21:02 +00:00
commit 24a48ffd1b

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
}