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

5 lines
104 B
JavaScript

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