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

6 lines
103 B
JavaScript

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