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

7 lines
141 B
JavaScript
Raw Normal View History

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