forked from M3-Academy/challenge-algorithms-v2.0
10 lines
260 B
JavaScript
10 lines
260 B
JavaScript
export function sumEven(value) {
|
|
// 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;
|
|
} |