forked from M3-Academy/challenge-algorithms-v2.0
8 lines
196 B
JavaScript
8 lines
196 B
JavaScript
export function maxValue(values) {
|
|
// implementar logica aqui
|
|
let maiorNumero = Math.max(...values);
|
|
if (values.length === 0) {
|
|
return maiorNumero=0
|
|
} else {};
|
|
return maiorNumero ;
|
|
} |