Skip to content

Instantly share code, notes, and snippets.

@SamuelTissot
Created January 13, 2017 03:08
Show Gist options
  • Save SamuelTissot/f068be6a640f0da57747d1cecee89f06 to your computer and use it in GitHub Desktop.
Save SamuelTissot/f068be6a640f0da57747d1cecee89f06 to your computer and use it in GitHub Desktop.
Time representaion in second
MINUTE_IN_SECONDS = 60
HOUR_IN_SECONDS = 60 * MINUTE_IN_SECONDS
DAY_IN_SECONDS = 24 * HOUR_IN_SECONDS
WEEK_IN_SECOND, = 7 * DAY_IN_SECONDS
MONTH_IN_SECONDS = 30 * DAY_IN_SECONDS
YEAR_IN_SECONDS = 365 * DAY_IN_SECONDS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment