forked from M3-Academy/challenge-algorithms-v2.0
feat: resolucao funcao sumEven
This commit is contained in:
parent
10b8d54684
commit
3e2337919c
@ -1,4 +1,15 @@
|
|||||||
export function sumEven(value) {
|
export function sumEven(value) {
|
||||||
// implementar logica aqui
|
// implementar logica aqui
|
||||||
|
let soma = 0
|
||||||
|
if(value.length == 0) return 0
|
||||||
|
for (let i = 0; i < value.length; i++) {
|
||||||
|
if(value[i] % 2 === 0) {
|
||||||
|
soma += value[i]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return soma
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sumEven([1, 2, 3, 4, 5])
|
Loading…
Reference in New Issue
Block a user