Posts by Luciano Melo • 29 points
2 posts
-
0
votes6
answers1947
viewsA: Use switch to test if a value is between a range of values
function determinarGeracao(anoDeNascimento){ if (anoDeNascimento < 1945) { return 'opção errada'; } if (anoDeNascimento == 1945) { return 'Geração silenciosa'; } if (anoDeNascimento <= 1964) {…
-
0
votes6
answers1947
viewsQ: Use switch to test if a value is between a range of values
I’m not able to compare the values within a switch case: function determinarGeracao(anoDeNascimento) { /* Complete a função onde voce deve comparar o * valor da variavel anoDeNascimento e atribuir…