feature: resolve exercício 03-maxValue

This commit is contained in:
Andrea Matsunaga 2022-10-30 13:55:23 -03:00
parent 936a7038da
commit 4326db7b99

View File

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