How to subtract minutes from a date in Node.js

2 Answers

0 votes
function subtractMinutesFromDate(minutes, date = new Date()) {
    date.setMinutes(date.getMinutes() - minutes);
 
    return date;
}
 
const date = new Date('2022-03-19T18:23:15');
 
console.log(subtractMinutesFromDate(7, date).toString());
   
   
   
/*
run:
   
Sat Mar 19 2022 18:16:15 GMT+0000 (Coordinated Universal Time)
   
*/

 



answered Mar 17, 2022 by avibootz
edited Jan 25, 2025 by avibootz
0 votes
// There are 60,000 milliseconds in a minute
 
const MS_PER_MINUTE = 60000;
const date = new Date('2022-03-19T18:23:15');
const minutes = 7;
 
const newdate = new Date(date.getTime() - minutes * MS_PER_MINUTE);
 
console.log(newdate.toString());
    
    
    
/*
run:
    
Sat Mar 19 2022 18:16:15 GMT+0000 (Coordinated Universal Time)
    
*/

 



answered Jan 25, 2025 by avibootz
edited Jan 25, 2025 by avibootz

Related questions

1 answer 143 views
1 answer 132 views
1 answer 127 views
1 answer 128 views
1 answer 151 views
1 answer 121 views
1 answer 132 views
132 views asked Mar 21, 2022 by avibootz
...