-1
<!DOCTYPE html>
<html>
<head>
<title>test2</title>
</head>
<script>
var data = prompt("informe o numero do mês desejado: ");
var mes =[
"Janeiro",
"Fevereiro",
"Março",
"Abril",
"Maio",
"Junho",
"Julho",
"Agosto",
"Setembro",
"Outubro",
"Novembro",
"Dezembro"];
var mes= data.getMonth();
console.log("Esse mes é "+mes);
</script>
</html>
In case I already managed to make the conversion of playing a number and bring a month, but I want to do it using the object date
.