Skip to content

Instantly share code, notes, and snippets.

@HallexCosta
Created July 12, 2021 17:23
Show Gist options
  • Save HallexCosta/c74db65405e05986e256899f6423badd to your computer and use it in GitHub Desktop.
Save HallexCosta/c74db65405e05986e256899f6423badd to your computer and use it in GitHub Desktop.
Generate Random Date
function randomDate(start: Date, end: Date) {
return new Date(
start.getTime() + Math.random() * (end.getTime() - start.getTime())
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment