feature #1

Merged
Emilly_schuenck merged 12 commits from feature into master 2022-11-02 21:34:20 +00:00
Showing only changes of commit 8e1d945c72 - Show all commits

View File

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