feat(03-maxValue): Adiciona função

This commit is contained in:
Emerson Fully 2022-10-29 13:02:24 -03:00
parent 2d10433ffc
commit 6c1bf006f4

View File

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