Skip to content

Instantly share code, notes, and snippets.

@ivuorinen
Created July 28, 2023 10:26
Show Gist options
  • Save ivuorinen/5733c65dc1d78170cbf4bf0fc92720eb to your computer and use it in GitHub Desktop.
Save ivuorinen/5733c65dc1d78170cbf4bf0fc92720eb to your computer and use it in GitHub Desktop.
Minutes since midnight
const minutesSinceMidnight = () => {
const now = new Date();
const midnight = new Date().setHours(0, 0, 0, 0);
return ((now - midnight) / 1000) / 60;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment