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

9 lines
158 B
JavaScript

export function maxValue(values) {
let resultOfMaxValue = Math.max(...values)
if(values.length === 0) {
return 0
}
return resultOfMaxValue
}