forked from M3-Academy/challenge-algorithms-v2.0
desafio 03-concluido
This commit is contained in:
parent
131d096057
commit
00658561b1
@ -1,4 +1,10 @@
|
||||
export function maxValue(values) {
|
||||
// implementar logica aqui
|
||||
|
||||
}
|
||||
//Math.max.apply(null, values); outro método
|
||||
if(values.length === 0) {
|
||||
return 0
|
||||
} else {
|
||||
return Math.max(...values); // método spred, vai espelhar a array e vai retorna o maior valor
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user