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

10 lines
168 B
JavaScript
Raw Normal View History

export function maxValue(values) {
// implementar logica aqui
2022-11-02 21:02:41 +00:00
if(values.length === 0) {
return 0;
}else{
2022-11-02 20:31:55 +00:00
return Math.max.apply(null, values);
2022-11-02 21:02:41 +00:00
}
2022-11-02 20:31:55 +00:00
2022-11-02 21:02:41 +00:00
2022-11-02 20:31:55 +00:00
}