develop #12

Merged
Rhayllon_Daudt merged 22 commits from develop into master 2022-11-01 00:35:27 +00:00
Showing only changes of commit 189b6f23a2 - Show all commits

View File

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