For any value you enter, the result is always "None of the alternatives", where is the error?
Follow the code:
<body>
<p>Clique para exibir...</p>
<!-- <button onclick="myFunction()">Clique aqui</button> -->
<button onclick="myFunction()">Clique aqui...</button>
<script>
function myFunction() {
var x=prompt("Digite o mes:");
mes=x;
switch (mes) {
case 1:
alert("janeiro");
break;
case 2:
alert("Fevereiro");
break;
case 3:
alert("março");
break;
case 4:
alert("abril");
break;
case 5:
alert("maio");
break;
default:
alert("Nenhuma das alternativas")
}
}
</script>
</body>