development #11

Merged
carloswinter merged 20 commits from development into master 2022-10-28 19:24:09 +00:00
Showing only changes of commit 4af6fcb6bf - Show all commits

View File

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