feat(sumEven): Responde função 07

This commit is contained in:
Affonso Kopmann 2022-10-30 15:46:19 -03:00
parent d02c19c6c0
commit 6baaa25c0f

View File

@ -1,4 +1,10 @@
export function sumEven(value) {
// implementar logica aqui
let soma = 0;
for( let index = 0; index < value.length; index += 1 ) {
if (value[index] % 2 == 0) {
soma = soma + value [ index ] ;
}
}
return soma;
}