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

9 lines
164 B
JavaScript

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