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

8 lines
179 B
JavaScript
Raw Normal View History

export function maxValue(values) {
// implementar logica aqui
if(values.length === 0){
return values = 0
} else{
return Math.max.apply(null, values);
}
}