challenge-algorithms-v2.0-a.../03-maxValue/index.js

9 lines
200 B
JavaScript

export function maxValue(values) {
// implementar logica aqui
if (values.length === 0) {
return 0;
} else {
const maxValue = Math.max(...Object.values(values));
return maxValue
}
}