Merge pull request 'Feat(Desafio_2.3): Cria resposta desafio 2.3' (#3) from Feature/Desafio_2.3 into develop

Reviewed-on: #3
This commit is contained in:
Rhayllon Daudt 2022-10-29 06:36:19 +00:00
commit 189b6f23a2

View File

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