Skip to content

Instantly share code, notes, and snippets.

@jimkang
Created August 15, 2019 13:24
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 jimkang/4e6dcc82acccafc23549b5190069ee5d to your computer and use it in GitHub Desktop.
Save jimkang/4e6dcc82acccafc23549b5190069ee5d to your computer and use it in GitHub Desktop.
Function that floors a date to the beginning of that day (12:00 AM or 00:00).
function floorToBeginningOfDay(date) {
return new Date(date.toLocaleDateString());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment