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

8 lines
153 B
JavaScript

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