El propósito de este artículo es obtener el nombre del mes de una fecha en particular usando el método getMonth() de JavaScript . Este método se usa para obtener el mes (0 a 11) del objeto Fecha dado . Devuelve un valor entero que va de (0 a 11) Cero (0) significa enero, 1 significa febrero, y así sucesivamente, hasta 11 significa diciembre.
Sintaxis:
DateObj.getMonth()
Ejemplo: el siguiente código se usa para mostrar el mes actual que pertenece a la fecha en particular.
HTML
<!DOCTYPE html> <html> <body style="text-align:center;"> <h2> GeeksForGeeks </h2> <h2> How to get month name from Date using Javascript? </h2> <button onclick="myFunction()"> Click Me! </button> <h3 id="demoID" style="color:green;"> </h3> <script> function myFunction() { // initializing an array const months = [ "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" ]; const d = new Date(); document.getElementById( "demoID").innerHTML = "The current month is " + months[d.getMonth()]; } </script> </body> </html>
Producción:
-
Antes de hacer clic en el botón:
-
Después de hacer clic en el botón:
Navegadores compatibles:
- Google Chrome
- explorador de Internet
- Firefox
- Ópera
- Safari
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA