feat: Soluciona o exercício 03 - Max value
This commit is contained in:
parent
ca578df017
commit
9ecafd2785
@ -1,4 +1,8 @@
|
||||
export function maxValue(values) {
|
||||
// implementar logica aqui
|
||||
|
||||
if (values.length > 0){
|
||||
return values = Math.max (...values)
|
||||
} else {
|
||||
return 0
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user