forked from M3-Academy/challenge-algorithms-v2.0
feat(sumEven): Responde função 07
This commit is contained in:
parent
d02c19c6c0
commit
6baaa25c0f
@ -1,4 +1,10 @@
|
|||||||
export function sumEven(value) {
|
export function sumEven(value) {
|
||||||
// implementar logica aqui
|
// implementar logica aqui
|
||||||
|
let soma = 0;
|
||||||
|
for( let index = 0; index < value.length; index += 1 ) {
|
||||||
|
if (value[index] % 2 == 0) {
|
||||||
|
soma = soma + value [ index ] ;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return soma;
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user