Skip to content

Instantly share code, notes, and snippets.

@jkohlin
Created December 19, 2022 09:46
Show Gist options
  • Save jkohlin/515ca2688c79c11b17c3eb38805e46ee to your computer and use it in GitHub Desktop.
Save jkohlin/515ca2688c79c11b17c3eb38805e46ee to your computer and use it in GitHub Desktop.
Get the date for x days ago
/**
* Description
* @param {Date} date
* @param {number} offset
* @returns {Date}
*/
export const getOffsetDate = (date, offset) => {
return new Date(date.setDate(date.getDate() - offset * 7))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment