Created
January 13, 2017 03:08
-
-
Save SamuelTissot/f068be6a640f0da57747d1cecee89f06 to your computer and use it in GitHub Desktop.
Time representaion in second
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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