challenge-algorithms-v2.0-S.../03-maxValue/index.js

18 lines
334 B
JavaScript
Raw Normal View History

export function maxValue(values) {
2022-10-28 17:55:31 +00:00
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;
}