feat(sumEven): fazendo funcão

This commit is contained in:
Caroline Moran 2022-10-28 07:42:09 -04:00
parent 755ff029e8
commit b797ec9a59

View File

@ -1,4 +1,15 @@
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;
}