forked from M3-Academy/challenge-algorithms-v2.0
develop #1
@ -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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user