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) {
|
export function maxValue(values) {
|
||||||
|
|
||||||
let resultOfMaxValue = Math.max(...values)
|
let resultOfMaxValue = Math.max(...values)
|
||||||
if(values === null) {
|
if(values.length === 0) {
|
||||||
resultOfMaxValue = 0
|
return 0
|
||||||
}
|
}
|
||||||
return resultOfMaxValue
|
return resultOfMaxValue
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user