feat: implementa função sumEven

This commit is contained in:
RodrigoJorge 2022-10-28 15:45:36 -03:00
parent 6685098c8e
commit 4965ff8076

View File

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