forked from M3-Academy/challenge-algorithms-v2.0
Feat(Desafio_2.7): Cria resposta desafio 2.7
This commit is contained in:
parent
24a48ffd1b
commit
0bc53f12d5
@ -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
|
||||
}
|
Loading…
Reference in New Issue
Block a user