challenge-algorithms-v2.0-d.../03-maxValue/index.js
2022-10-28 18:42:53 -03:00

6 lines
141 B
JavaScript

export function maxValue(values) {
// implementar logica aqui
if(values.length > 0)
return Math.max.apply(null,values);
return 0;
}