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

13 lines
301 B
JavaScript
Raw Normal View History

export function maxValue(values) {
// implementar logica aqui
2022-10-29 02:41:54 +00:00
let numeromaior = 0;
if (values[0] < numeromaior)
numeromaior = values[0];
let i = 0;
for (i = 0; i < values.length; i++){
if (numeromaior < values[i]){
numeromaior = values[i];
}
}
return numeromaior;
}