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

7 lines
133 B
JavaScript
Raw Normal View History

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