Add Minutes To Given Date Time or Date Only (#1627)

Co-authored-by: Angelos Chalaris <chalarangelo@gmail.com>
This commit is contained in:
riddhi-27
2020-11-28 22:57:46 +05:30
committed by GitHub
parent 2136fa79ce
commit 5038db3db8

View File

@ -0,0 +1,24 @@
---
title: addMinutesToDate
tags: date,intermediate
---
Calculates the date of `n` minutes from the given date, returning its string representation.
- Use `new Date()` to create a date object from the first argument.
- Use `Date.prototype.getTime()` and `Date.prototype.setTime()` to add `n` minutes to the given date.
- Use `Date.prototype.toISOString()`, `String.prototype.split()` and `String.prototype.replace()` to return a string in `yyyy-mm-dd HH:MM:SS` format.
```js
const addMinutesToDate = (date, n) => {
const d = new Date(date);
d.setTime(d.getTime() + n * 60000);
return d.toISOString().split('.')[0].replace('T',' ');
};
```
```js
addMinutesToDate('2020-10-19 12:00:00', 10); // '2020-10-19 12:10:00'
addMinutesToDate('2020-10-19', -10); // '2020-10-18 23:50:00'
```