El date-and-time.Date.addHours() agrega las Horas 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:
addHours(dateObj, months)
Parámetros : este método toma los siguientes argumentos como parámetro:
- dateobject: Es el objeto de string de la fecha.
- horas: Es el número de horas.
Valor devuelto : este método devuelve la fecha y la hora actualizadas.
Ejemplo 1:
index.js
// Node.js program to demonstrate the // Date.addHours() method // Importing module const date = require('date-and-time') // Creating object of current date and time // by using Date() const now = new Date(); // Adding Hours to the existing date and time // by using date.addHours() method const value = date.addHours(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 : Mon Mar 08 2021 20:35:37 GMT+0530 (India Standard Time)
Ejemplo 2:
index.js
// Node.js program to demonstrate the // Date.addHours() 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 Hours to the existing date and time // by using date.addHours() method const value = date.addHours(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 : Mon Mar 22 2021 02:37:29 GMT+0530 (India Standard Time)
Referencia: https://github.com/knowledgecode/date-and-time#addhoursdateobj-hours
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA