forked from M3-Academy/challenge-algorithms-v2.0
refactor(maxValue): melhorando o código
This commit is contained in:
parent
66051c8ddb
commit
d1f05007e0
@ -1,8 +1,8 @@
|
||||
export function maxValue(values) {
|
||||
|
||||
let resultOfMaxValue = Math.max(...values)
|
||||
if(values === null) {
|
||||
resultOfMaxValue = 0
|
||||
if(values.length === 0) {
|
||||
return 0
|
||||
}
|
||||
return resultOfMaxValue
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user