Skip to content

Instantly share code, notes, and snippets.

@luan0ap
Created March 10, 2024 23:36
Show Gist options
  • Save luan0ap/2b429f7435cd753f348a1e4260483717 to your computer and use it in GitHub Desktop.
Save luan0ap/2b429f7435cd753f348a1e4260483717 to your computer and use it in GitHub Desktop.
Add days to Date
const addDay = (days = 1) => {
const date = new Date()
date.setDate(date.getDate() + days)
return date
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment