forked from M3-Academy/challenge-algorithms-v2.0
<Feture>(maxValue): implementação do código maxValue
This commit is contained in:
parent
38c50ef28f
commit
8aabaf9fad
@ -1,4 +1,8 @@
|
|||||||
export function maxValue(values) {
|
export function maxValue(values) {
|
||||||
// implementar logica aqui
|
// implementar logica aqui
|
||||||
|
if (values.length == 0){
|
||||||
|
return 0
|
||||||
|
}else{
|
||||||
|
return Math.max(...values)
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user