challenge-algorithms-v2.0-e.../03-maxValue/index.js
2022-10-28 12:14:06 -03:00

7 lines
141 B
JavaScript

export function maxValue(values) {
// implementar logica aqui
if (values.length < 1) {
return 0;
}
return Math.max ( ...values)
}