feat: Finalizando terceiro exercício
This commit is contained in:
parent
c11233d910
commit
fed221dd71
@ -1,6 +1,14 @@
|
|||||||
export function maxValue(values) {
|
export function maxValue(values) {
|
||||||
|
|
||||||
// implementar logica aqui
|
if (values.length === 0) {
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
else {
|
||||||
|
let maxNumber = values.reduce((a, b) => Math.max(a, b))
|
||||||
|
|
||||||
|
return maxNumber;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user