From 6d011b3494812cb97510c9565d21271e0bdfe60f Mon Sep 17 00:00:00 2001 From: Carlos Scantbelruy Date: Fri, 28 Oct 2022 08:00:55 -0400 Subject: [PATCH] retornando maior valor --- 03-maxValue/index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/03-maxValue/index.js b/03-maxValue/index.js index e433b31..600a815 100644 --- a/03-maxValue/index.js +++ b/03-maxValue/index.js @@ -1,4 +1,3 @@ export function maxValue(values) { - // implementar logica aqui - + return Math.max.apply(null, values); } \ No newline at end of file