feat(maxvalue): made third challenge

This commit is contained in:
Gabriel Ferreira Lehmann 2022-10-29 22:58:26 -03:00
parent c6f6df9c59
commit f1cbadda05

View File

@ -1,4 +1,5 @@
export function maxValue(values) {
export function maxValue(values = []) {
// implementar logica aqui
if (values.length < 1) return 0
return Math.max(...values)
}