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