Languages
[Edit]
EN

TypeScript - add days to date

0 points
Created by:
Paluskitten
356

In this article, we would like to show you how to add days to date in TypeScript.

Example reusable lambda function

In this example, we create a simple function that takes two arguments:

  • date to which we want to add some days,
  • days - a number of days we want to add.

Practical example:

const addDays = (date: Date, days: number): Date => {
  let result = new Date(date);
  result.setDate(result.getDate() + days);
  return result;
};


// Usage example:

const date: Date = new Date('2022-03-16T23:59:59.000Z');
const result: Date = addDays(date, 1);

console.log(result.toISOString()); // 2022-03-17T23:59:59.000Z

Output:

2022-03-17T23:59:59.000Z
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join