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

11 lines
182 B
JavaScript

export function sumEven(value) {
let total = 0;
for(let i = 0; i < value.length; i++){
if(value[i] % 2 === 0){
total += value[i];
}
} return total;
}