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

6 lines
140 B
JavaScript
Raw Permalink Normal View History

export function maxValue(values) {
// implementar logica aqui
2022-10-27 23:44:51 +00:00
if(values.length === 0 || !values) return 0
return Math.max(...values)
}