El método date-and-time.Date.addSeconds() se usa para agregar segundos 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 del enlace CDN:
<script src="/path/to/date-and-time.min.js"></script>
Sintaxis:
const addSeconds(dateObj, seconds)
Parámetros:
- dateobject: Es el objeto de string de la fecha.
- segundos: Es el número de segundos a sumar.
Valor devuelto : este método devuelve la fecha y la hora actualizadas.
Ejemplo 1:
index.js
// Node.js program to demonstrate the // Date.addSeconds() method // Importing date-and-time module const date = require('date-and-time') // Creating object of current date and time // by using Date() const now = new Date(); // Adding Seconds to the existing date and time // by using date.addSeconds() method const value = date.addSeconds(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:
fecha y hora actualizadas: – Vie 19 de marzo de 2021 18:13:08 GMT+0530 (hora estándar de India)
Ejemplo 2:
index.js
// Node.js program to demonstrate the // Date.addSeconds() method // Importing date-and-time 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 Seconds to the existing date and time // by using date.addSeconds() method const value = date.addSeconds(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:
fecha y hora actualizadas:- Sáb 20 de marzo de 2021 18:04:43 GMT+0530 (hora estándar de India)
Referencia : https://github.com/knowledgecode/date-and-time#addsecondsdateobj-seconds
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA