challenge-algorithms-v2.0-j.../07-sumEven/index.js

12 lines
207 B
JavaScript
Raw Permalink Normal View History

export function sumEven(value) {
// implementar logica aqui
2022-10-27 23:34:22 +00:00
let soma = 0;
for(let i = 0; i < value.length; i++){
if(value[i] % 2 === 0){
soma += value[i];
}
}
return soma;
}