feat(maxValue): cria funcao que encontra maior elemento de um array #3

Merged
ViniciusDeniz merged 1 commits from feature/maxValue into master 2022-11-02 20:32:44 +00:00

View File

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