forked from M3-Academy/challenge-algorithms-v2.0
refactor(sumEven): melhorando o código
This commit is contained in:
parent
b575ddcb50
commit
9505f364ff
@ -2,20 +2,20 @@ export function sumEven(value) {
|
|||||||
// armazenar os valores em uma variavel,
|
// armazenar os valores em uma variavel,
|
||||||
// filtrar somente os números pares do array,
|
// filtrar somente os números pares do array,
|
||||||
// somar os numeros pares filtrados.
|
// somar os numeros pares filtrados.
|
||||||
// Fazer uma condicional para retornar o array vazio e o número 1
|
// Fazer uma condicional para retornar zero quando passamos um array vazio ou array de número 1
|
||||||
let sumOfPars = value
|
let sumOfPars = value
|
||||||
|
|
||||||
.filter(value => value % 2 === 0 )
|
|
||||||
.reduce((acc,next) => (acc += next))
|
|
||||||
|
|
||||||
if(sumOfPars === []) {
|
.filter((value) => {
|
||||||
sumOfPars = 0
|
if (value % 2 === 0) {
|
||||||
} else if(sumOfPars === 0)
|
return true
|
||||||
sumOfPars = 1
|
} else if (value.length === 0) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.reduce((acc, next) => (acc += next))
|
||||||
|
|
||||||
|
|
||||||
return sumOfPars
|
return sumOfPars
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user