Node.js date-and-time Date.addSeconds() Method
The date-and-time.Date.addSeconds() method is used to add the extra Seconds to the existing date and time.
Required Module: Install the module by npm or used it locally.
- By using npm:
npm install date-and-time --save
- By using CDN link:
<script src="/path/to/date-and-time.min.js"></script>
Syntax:
const addSeconds(dateObj, seconds)
Parameters: This method takes the following arguments as a parameter:
- dateobject: It is the string object of the date.
- seconds: It is the number of seconds to be added.
Return Value : This method returns updated date and time.
Example 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) |
Run the index.js file using the following command:
node index.js
Output:
updated date and time :- Fri Mar 19 2021 18:13:08 GMT+0530 (India Standard Time)
Example 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) |
Run the index.js file using the following command:
node index.js
Output:
updated date and time :- Sat Mar 20 2021 18:04:43 GMT+0530 (India Standard Time)
Reference: https://github.com/knowledgecode/date-and-time#addsecondsdateobj-seconds
Please Login to comment...