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

13 lines
249 B
JavaScript

export function maxValue(values) {
// implementar logica aqui
let maior = -100;
for(let i = 0;i < values.length;i++){
if(values[i] > maior){
maior = values[i];
}
}
if (values.length == 0){
maior = 0;
}
return maior;
}