Posts by Monica Craveiro de Menezes • 1 point
1 post
-
0
votes8
answers3758
viewsA: Exercise taking the position of the array
I would do so... function medalhaDeAcordoComPosto(posto){ var medalhas = ["nada","ouro","prata","bronze"]; if((posto > 0) && (posto < 4)){ return console.log(medalhas[posto]); }else{…