forked from M3-Academy/challenge-algorithms-v2.0
feat(maxvalue): made third challenge
This commit is contained in:
parent
c6f6df9c59
commit
f1cbadda05
@ -1,4 +1,5 @@
|
|||||||
export function maxValue(values) {
|
export function maxValue(values = []) {
|
||||||
// implementar logica aqui
|
// implementar logica aqui
|
||||||
|
if (values.length < 1) return 0
|
||||||
|
return Math.max(...values)
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user