Feat:Finalizando maxValue

This commit is contained in:
Gustavo Rallenson Gonçalves Da Silva 2022-10-28 19:36:26 -03:00
parent 3fabe8762d
commit 38030a8427

View File

@ -1,4 +1,16 @@
export function maxValue(values) {
// implementar logica aqui
const Arr = values
let Maior = values[0]
if(Maior === undefined){
return Maior = 0;
}
else{
Arr.forEach((atual)=>{
if(Maior < atual){
Maior = atual
}
})
}
return Maior;
}