feat: criando a area do codigo dos numeros pares da sumEven
This commit is contained in:
parent
c6f6df9c59
commit
8350f35bb5
@ -1,4 +1,14 @@
|
|||||||
export function sumEven(value) {
|
export function sumEven(values) {
|
||||||
// implementar logica aqui
|
// implementar logica aqui
|
||||||
|
|
||||||
}
|
let soma = 0
|
||||||
|
|
||||||
|
for (let index = 0; index < values.length; index++) {
|
||||||
|
if (values[index] % 2 === 0) {
|
||||||
|
soma += values[index]
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return soma
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user