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

6 lines
122 B
JavaScript
Raw Normal View History

export function maxValue(values) {
2022-10-28 20:56:18 +00:00
if(values.length === 0){
return 0;
}
return Math.max.apply(null, values);
}