El date-and-time.Date.addYears() es una colección minimalista de funciones para manipular el módulo de fecha y hora de JS que se usa para agregar los años 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:
const addYears(dateObj, years)
Parámetros: esta API toma los siguientes argumentos como parámetros.
- objeto de fecha : el objeto de string de la fecha.
- years: Número de años.
Valor devuelto: este método devuelve la fecha y la hora actualizadas.
Ejemplo 1:
index.js
// Node.js program to demonstrate the // Date.addYears() APi // Importing http module const date = require('date-and-time') // Creating object of current date and time // by using Date() const now = new Date(); // Adding years to the existing date and time // by using date.addYears() api const value = date.addYears(now,24); // Display the result console.log("updated date and time : " + value)
Ejecute el archivo index.js usando el siguiente comando:
node index.js
Producción:
updated date and time : Tue Mar 07 2045 19:48:00 GMT+0530 (India Standard Time)
Ejemplo 2:
index.js
// Node.js program to demonstrate the // Date.addYears() APi // Importing http 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 years to the existing date and time // by using date.addYears() api const value = date.addYears(now,30); // Display the result console.log("updated date and time : " + value)
Ejecute el archivo index.js usando el siguiente comando:
node index.js
Producción:
updated date and time : Mon Mar 20 2051 19:50:44 GMT+0530 (India Standard Time)
Referencia: https://github.com/knowledgecode/date-and-time#adyearsdateobj-years
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA