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

11 lines
136 B
JavaScript

export function maxValue(values) {
if (values == `${[]}`) {
return 0
} else {
return Math.max.apply(null, values);
}
}