El date-and-time.Date.addDays() agrega los días adicionales 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:
addDays(dateObj, days)
Parámetros : este método toma los siguientes argumentos como parámetros:
- dateobject: Es el objeto de string de la fecha.
- días: Es el número de días.
Valor devuelto : este método devuelve la fecha y la hora actualizadas.
Ejemplo 1:
index.js
// Node.js program to demonstrate the // Date.addDays() method // Importing module const date = require('date-and-time') // Creating object of current date and time // by using Date() const now = new Date(); // Adding Days to the existing date and time // by using date.addDays() method const value = date.addDays(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 : Wed Mar 31 2021 20:07:07 GMT+0530 (India Standard Time)
Ejemplo 2:
index.js
// Node.js program to demonstrate the // Date.addDays() 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 Days to the existing date and time // by using date.addDays() method const value = date.addDays(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 : Tue Apr 13 2021 20:09:57 GMT+0530 (India Standard Time)
Referencia: https://github.com/knowledgecode/date-and-time#adddaysdateobj-days
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA