How to subtract seconds from a date in Node.js

1 Answer

0 votes
function subtractSecondsFromDate(Seconds, date = new Date()) {
    date.setSeconds(date.getSeconds() - Seconds);
 
    return date;
}
 
const date = new Date('2022-03-19T06:56:31');
 
console.log(subtractSecondsFromDate(5, date).toString());
 
 
   
   
   
   
/*
run:
   
Sat Mar 19 2022 06:56:26 GMT+0000 (Coordinated Universal Time)
   
*/

 



answered Mar 17, 2022 by avibootz

Related questions

1 answer 143 views
1 answer 132 views
1 answer 126 views
1 answer 127 views
2 answers 129 views
1 answer 120 views
1 answer 117 views
117 views asked Mar 21, 2022 by avibootz
...