diff --git a/03-maxValue/index.js b/03-maxValue/index.js index e433b31..c1b1a9d 100644 --- a/03-maxValue/index.js +++ b/03-maxValue/index.js @@ -1,4 +1,10 @@ export function maxValue(values) { // implementar logica aqui - + var maiorNumero = 0; + if (values.length <1) { + maiorNumero = 0; + } else { + maiorNumero = Math.max.apply(Math,values) ; + } + return maiorNumero; } \ No newline at end of file