El date-and-time.Date.addMonths() agrega el mes adicional a la fecha y hora existentes.
Módulo requerido: instale el módulo por npm o utilícelo localmente.
- Usando npm.
npm install date-and-time --save
- Mediante el uso de un enlace CDN.
<script src="/path/to/date-and-time.min.js"></script>
Sintaxis:
addMonths(dateObj, months)
Parámetros : este método toma los siguientes argumentos como parámetro:
- dateobject: Es el objeto de string de la fecha.
- meses: Es el número de meses.
Valor devuelto : este método devuelve la fecha y la hora actualizadas.
Ejemplo 1:
index.js
// Node.js program to demonstrate the // Date.addMonths() method // Importing module const date = require('date-and-time') // Creating object of current date and time // by using Date() const now = new Date(); // Adding Months to the existing date and time // by using date.addMonths() method const value = date.addMonths(now,24); // Display the result console.log("updated date and time : " + value)
Ejecute el archivo index.js con el siguiente comando:
node index.js
Producción:
updated date and time : Thu Mar 09 2023 00:15:16 GMT+0530 (India Standard Time)
Ejemplo 2:
index.js
// Node.js program to demonstrate the // Date.addMonths() method // Importing module const date = require('date-and-time') // Creating object of current date and time // by using Date() const now = new Date(); now.setDate(20) // Adding Months to the existing date and time // by using date.addMonths() method const value = date.addMonths(now,30); // Display the result console.log("updated date and time : " + value)
Ejecute el archivo index.js con el siguiente comando:
node index.js
Producción:
updated date and time : Wed Sep 20 2023 00:16:10 GMT+0530 (India Standard Time)
Referencia : https://github.com/knowledgecode/date-and-time#addmonthsdateobj-months
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA