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

8 lines
142 B
JavaScript
Raw Normal View History

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