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

6 lines
103 B
JavaScript
Raw Normal View History

export function maxValue(values) {
// implementar logica aqui
2022-11-02 00:40:22 +00:00
return Math.max(null,values);
}