El método de fecha y hora Date.addMilliseconds() se usa para agregar los milisegundos 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 addMilliseconds(dateObj, seconds)
Parámetros :
- dateobject: Es el objeto de string de la fecha.
- segundos: Es el número de milisegundos 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.addMilliseconds() method // Importing date-and-time module const date = require('date-and-time') // Creating object of current date // and time using Date() method const now = new Date(); // Adding Milliseconds to the existing date and time // by using date.addMilliseconds() method const value = date.addMilliseconds(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 :- Fri Mar 19 2021 18:15:26 GMT+0530 (India Standard Time)
Ejemplo 2:
index.js
// Node.js program to demonstrate the // Date.addMilliseconds() method // Importing date-and-time module const date = require('date-and-time') // Creating object of current date // and time using Date() method const now = new Date(); now.setDate(20) // Adding Milliseconds to the existing // date and time by using // date.addMilliseconds() method const value = date.addMilliseconds(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 :- Sat Mar 20 2021 18:16:05 GMT+0530 (India Standard Time)
Referencia : https://github.com/knowledgecode/date-and-time#addmillisecondsdateobj-milliseconds
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA