Skip to content

Instantly share code, notes, and snippets.

@luizbills
Created July 17, 2025 01:12
Show Gist options
  • Save luizbills/fe5f9cee402fb68c5112118c722bad3b to your computer and use it in GitHub Desktop.
Save luizbills/fe5f9cee402fb68c5112118c722bad3b to your computer and use it in GitHub Desktop.
Get the date in YYYY-MM-DD format
const date = () => {
const offset = (new Date()).getTimezoneOffset()
return new Date(Date.now() - (offset*60*1000)).toISOString().split('T')[0]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment