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

7 lines
141 B
JavaScript
Raw Permalink Normal View History

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