Feat(Desafio_2.7): Cria resposta desafio 2.7

This commit is contained in:
Rhayllon Daudt 2022-10-29 04:24:24 -03:00
parent 24a48ffd1b
commit 0bc53f12d5

View File

@ -1,4 +1,9 @@
export function sumEven(value) {
// implementar logica aqui
let soma = 0
for(let i = 0; i < value.length; i++){
if(value[i] % 2 === 0)
soma += value[i]
}
return soma
}