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

8 lines
153 B
JavaScript
Raw Permalink Normal View History

export function maxValue(values) {
// implementar logica aqui
2022-10-28 15:51:03 +00:00
if(values.length === 0) {
return values.length;
}
return Math.max(...values)
}