feat: Implementa Desafio 2.3

This commit is contained in:
Sabrina Miranda 2022-10-28 14:55:31 -03:00
parent c10bee305d
commit 1fe9d7fb96

View File

@ -1,4 +1,18 @@
export function maxValue(values) {
// implementar logica aqui
let valores = [...values];
let maiorValor = valores[0];
if(valores.length === 0) {
maiorValor = 0;
}else {
for(let i = 0 ; i < valores.length ; i++) {
let valor = valores[i];
if(valor > maiorValor) {
maiorValor = valor;
}
}
}
return maiorValor;
}