Skip to content

Instantly share code, notes, and snippets.

@elzup
Created February 25, 2020 02:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elzup/81fed3f5be1973bc6aff0ce4b9cfeafc to your computer and use it in GitHub Desktop.
Save elzup/81fed3f5be1973bc6aff0ce4b9cfeafc to your computer and use it in GitHub Desktop.
Run setTimeout at become tomorrow
const nextDay = () => new Date().setHours(0, 0, 0, 0) + 24 * 60 * 60 * 1000
const tommorowFromNow = () => nextDay() - new Date()
setTimeout(() => {
// code
}, tommorowFromNow())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment