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

4 lines
95 B
JavaScript

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