diff --git a/07-sumEven/index.js b/07-sumEven/index.js index bb1e095..7bd8ff9 100644 --- a/07-sumEven/index.js +++ b/07-sumEven/index.js @@ -1,4 +1,8 @@ export function sumEven(value) { // implementar logica aqui - + const numerosPares = value.filter(valor => (valor % 2) == 0) + + return numerosPares.reduce((somatorio, par) => { + return somatorio + par + }, 0) } \ No newline at end of file