El método moment().month() se utiliza para obtener o establecer el mes del objeto Moment. Los meses en Moment.js están indexados a cero, por lo tanto, el rango de los meses es de 0 a 11, siendo 0 enero y 11 diciembre. Un valor superior a 11 lo haría burbujear hasta el próximo año.
El mes también se puede configurar usando una string del nombre completo o abreviado del mes.
Sintaxis:
moment().month( Number|String );
Parámetros: este método acepta un solo parámetro como se mencionó anteriormente y se describe a continuación:
- Número|String: Es el mes que se tiene que configurar para el objeto Momento. es un parámetro opcional.
Valor devuelto: este método devuelve el mes actual del Momento.
Nota: Esto no funcionará en el programa Node.js normal porque requiere que una biblioteca moment.js externa se instale globalmente o en el directorio del proyecto.
Moment.js se puede instalar con el siguiente comando:
Instalación del módulo de momentos:
npm install moment
Los siguientes ejemplos demostrarán el método Moment.js moment().month() .
Ejemplo 1:
Javascript
const moment = require('moment'); console.log("Current Date:", moment().toString()) console.log("Current month is:", moment().month()) let month10 = moment().month(10); console.log( "Moment with Month of 10 is:", month10.toString() ) let month24 = moment().month(24); console.log( "Moment with Month of 24 is:", month24.toString() )
Producción:
Current Date: Wed Jul 13 2022 01:30:32 GMT+0530 Current month is: 6 Moment with Month of 10 is: Sun Nov 13 2022 01:30:32 GMT+0530 Moment with Month of 24 is: Sat Jan 13 2024 01:30:32 GMT+0530
Ejemplo 2:
Javascript
const moment = require('moment'); console.log("Current Date:", moment().toString()) console.log("Current month is:", moment().month()) let monthDecember = moment().month("December"); console.log( "Moment with Month of December is:", monthDecember.toString() ) let monthFeb = moment().month("Feb"); console.log( "Moment with Month of Feb is:", monthFeb.toString() )
Producción:
Current Date: Wed Jul 13 2022 01:30:32 GMT+0530 Current month is: 6 Moment with Month of December is: Tue Dec 13 2022 01:30:32 GMT+0530 Moment with Month of Feb is: Sun Feb 13 2022 01:30:32 GMT+0530
Referencia: https://momentjs.com/docs/#/get-set/month/
Publicación traducida automáticamente
Artículo escrito por sayantanm19 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA