How to subtract minutes from a date in JavaScript

2 Answers

0 votes
function subtractMinutesFromDate(minutes, date = new Date()) {
    date.setMinutes(date.getMinutes() - minutes);
 
    return date;
}
 
const date = new Date('2022-03-17T18:22:15');
 
console.log(subtractMinutesFromDate(10, date).toString());

   
   
/*
run:
   
Thu Mar 17 2022 18:12: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-17T18:22:15');
const minutes = 10;

const newdate = new Date(date.getTime() - minutes * MS_PER_MINUTE);

console.log(newdate.toString());
   
   
   
/*
run:
   
Thu Mar 17 2022 18:12:15 GMT+0000 (Coordinated Universal Time)
   
*/

 



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

Related questions

1 answer 135 views
2 answers 138 views
2 answers 173 views
1 answer 193 views
1 answer 165 views
1 answer 128 views
...