Skip to content

Instantly share code, notes, and snippets.

@andirkh
Created July 25, 2023 05:18
Show Gist options
  • Save andirkh/8754cb382721ec063f390da64fe75633 to your computer and use it in GitHub Desktop.
Save andirkh/8754cb382721ec063f390da64fe75633 to your computer and use it in GitHub Desktop.
get last x days
const getLastDays = (day) => Array.from({ length: day }, (_, i) => new Date(Date.now() - i * 24 * 60 * 60 * 1000));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment