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

8 lines
149 B
JavaScript
Raw Normal View History

export function maxValue(values) {
// implementar logica aqui
2022-11-02 20:31:55 +00:00
/* if(values = []) {
return 0;*/
return Math.max.apply(null, values);
}