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

6 lines
175 B
JavaScript

export function maxValue(values) {
// implementar logica aqui
if(Math.max.apply(undefined ,values) == -Infinity)
return 0
return Math.max.apply(undefined ,values);
}