feat: 03-maxValue

This commit is contained in:
Adilson Fernando Neves Ornellas 2022-10-29 00:11:51 -03:00
parent 7f6f041de4
commit 9bc83bd4cb

View File

@ -1,4 +1,10 @@
export function maxValue(values) {
// implementar logica aqui
var maiorNumero = 0;
if (values.length <1) {
maiorNumero = 0;
} else {
maiorNumero = Math.max.apply(Math,values) ;
}
return maiorNumero;
}