Posts by Caio Farias • 11 points
1 post
-
1
votes8
answers3758
viewsA: Exercise taking the position of the array
function medalhaDeAcordoComPosto(numero) { var medalhas = ['nada', 'ouro', 'prata', 'bronze', 'nada', 'nada'] if(medalhas.indexOf(medalhas[numero]) == numero) { return medalhas[numero] } else {…