El método moment().year() se usa para obtener o establecer el año del objeto Moment. El valor del año que se puede establecer tiene un rango de -270.000 a 270.000.
Sintaxis:
moment().year( Number );
Parámetros: este método acepta un solo parámetro como se mencionó anteriormente y se describe a continuación:
- Número: Es el año que se tiene que configurar para el objeto Momento. es un parámetro opcional.
Valor devuelto: este método devuelve el año 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().year() .
Ejemplo 1:
Javascript
const moment = require('moment'); console.log("Current Date:", moment().toString()) console.log("Current year is:", moment().year()) let year2050 = moment().year(2050); console.log("Year of 2050 is:", year2050.toString()) let year1950 = moment().year(1950); console.log("Year of 1950 is:", year1950.toString())
Producción:
Current Date: Mon Jul 11 2022 02:09:59 GMT+0530 Current year is: 2022 Year of 2050 is: Mon Jul 11 2050 02:09:59 GMT+0530 Year of 1950 is: Tue Jul 11 1950 02:09:59 GMT+0530
Ejemplo 2:
Javascript
const moment = require('moment'); console.log("Current Date:", moment().toString()) console.log("Current year is:", moment().year()) let negativeYear50 = moment().year(-50); console.log( "Negative Year of 50 is:", negativeYear50.toString() ) let negativeYear1000 = moment().year(-1000); console.log( "Negative Year of 1000 is:", negativeYear1000.toString() )
Producción:
Current Date: Mon Jul 11 2022 02:09:59 GMT+0530 Current year is: 2022 Negative Year of 50 is: Tue Jul 11 -0050 02:09:59 GMT+0553 Negative Year of 1000 is: Fri Jul 11 -1000 02:09:59 GMT+0553
Referencia: https://momentjs.com/docs/#/get-set/year/
Publicación traducida automáticamente
Artículo escrito por sayantanm19 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA