Descripción
Fecha de JavaScript getMonth()El método devuelve el mes en la fecha especificada según la hora local. El valor devuelto porgetMonth() es un número entero entre 0 y 11. 0 corresponde a enero, 1 a febrero, etc.
Sintaxis
Su sintaxis es la siguiente:
Date.getMonth()
Valor devuelto
Devuelve el mes en la fecha especificada según la hora local.
Ejemplo
Pruebe el siguiente ejemplo.
<html>
<head>
<title>JavaScript getMonth Method</title>
</head>
<body>
<script type = "text/javascript">
var dt = new Date( "December 25, 1995 23:15:00" );
document.write("getMonth() : " + dt.getMonth() );
</script>
</body>
</html>
Salida
getMonth() : 11