El método de fecha y hora Date.subtract() se usa para restar los dos objetos de fecha.
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:
const subtract(date1, date2)
Parámetros:
- date1: Es el primer objeto de fecha del cual se resta la segunda fecha.
- date2: Es el segundo objeto de fecha.
Valor devuelto: este método devuelve el objeto de resultado restando date2 de date1.
Ejemplo 1:
index.js
// Node.js program to demonstrate the // Date.subtract() 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(); // Creating object of given date and time const date1 = new Date(2015, 0, 1); // Subtracting the both dates // by using date.subtract() method const value = date.subtract(now,date1); // Display the result console.log("total days between them " + value.toDays())
Ejecute el archivo index.js con el siguiente comando:
node index.js
Producción:
total days between them 2270.3951833333335
Ejemplo 2:
index.js
// Node.js program to demonstrate the // Date.subtract() 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(); // Setting days in the existing date now.setDate(20); // Creating object of given date and time const date1 = new Date(2015, 0, 1); // Subtracting the both dates // by using date.subtract() method const value = date.subtract(now,date1); // Display the result console.log("total days between them " + value.toDays())
Ejecute el archivo index.js con el siguiente comando:
node index.js
Producción:
total days between them 2270.397227997685
Referencia : https://github.com/knowledgecode/date-and-time#subtractdate1-date2
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA