Days ago

JavaScript, Date · Jan 30, 2022

Calculates the date of n days ago from today as a string representation.

const daysAgo = n => {
  let d = new Date();
  d.setDate(d.getDate() - Math.abs(n));
  return d.toISOString().split('T')[0];
};
daysAgo(20); // 2020-09-16 (if current date is 2020-10-06)

More like this

  • Days from now

    Calculates the date of n days from today as a string representation.

    JavaScript, Date · Jan 30, 2022

  • Add days to date

    Calculates the date of n days from the given date, returning its string representation.

    JavaScript, Date · Nov 28, 2020

  • Add minutes to date

    Calculates the date of n minutes from the given date, returning its string representation.

    JavaScript, Date · Nov 28, 2020