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

17 lines
301 B
JavaScript

export function maxValue(values) {
let maiorValor = values[0];
if(values.length === 0) {
maiorValor = 0;
}else {
for(let i = 0 ; i < values.length ; i++) {
let valor = values[i];
if(valor > maiorValor) {
maiorValor = valor;
}
}
}
return maiorValor;
}