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

4 lines
95 B
JavaScript
Raw Normal View History

export function maxValue(values) {
// implementar logica aqui
2022-10-31 15:45:34 +00:00
return Math.max(...values);
}