humbertoferro #1

Merged
Humberto.Ferro merged 9 commits from humbertoferro into master 2022-10-31 21:34:30 +00:00
Showing only changes of commit 8198e91d69 - Show all commits

View File

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