feat: funcao maxValue
This commit is contained in:
parent
ecf561679f
commit
18edddd101
@ -1,4 +1,13 @@
|
||||
export function maxValue(values) {
|
||||
// implementar logica aqui
|
||||
|
||||
}
|
||||
if (values.length <= 0) {
|
||||
return 0
|
||||
} else {
|
||||
return (Math.max (...values));
|
||||
}}
|
||||
|
||||
// Se a
|
||||
// Aqui utilizei a sintaxe de espalhar, "..." "Spread Syntax", que "abre" o array para aplicar "Math.max".
|
||||
// No entanto, poderia tambem ser utilizado para o mesmo resultado a seguinte logica
|
||||
|
||||
// return (Math.max.apply (null,values))
|
Loading…
Reference in New Issue
Block a user