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

9 lines
162 B
JavaScript
Raw Normal View History

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