forked from M3-Academy/challenge-algorithms-v2.0
16 lines
327 B
JavaScript
16 lines
327 B
JavaScript
export function sumEven(value) {
|
|
// implementar logica aqui
|
|
const arr = [];
|
|
for (let index = 0; index < value.length; index++) {
|
|
const element = value[index];
|
|
if (element % 2 == 0) {
|
|
arr.push(element);
|
|
}
|
|
}
|
|
function add(a, b) {
|
|
return a + b;
|
|
}
|
|
var soma = arr.reduce(add, 0);
|
|
return soma;
|
|
}
|