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

16 lines
290 B
JavaScript
Raw Normal View History

export function maxValue(values) {
// implementar logica aqui
2022-10-28 22:36:26 +00:00
const Arr = values
let Maior = values[0]
if(Maior === undefined){
return Maior = 0;
}
else{
Arr.forEach((atual)=>{
if(Maior < atual){
Maior = atual
}
})
}
return Maior;
}