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

10 lines
205 B
JavaScript
Raw Normal View History

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