Skip to content

Instantly share code, notes, and snippets.

@MeyCry
Created August 17, 2018 17:09
Show Gist options
  • Save MeyCry/e8b061ab6d11930e1c77e17fc2ba0b98 to your computer and use it in GitHub Desktop.
Save MeyCry/e8b061ab6d11930e1c77e17fc2ba0b98 to your computer and use it in GitHub Desktop.
time in millisecond
// time const in millisecond
export const SECOND = 1000;
export const MINUTE = 60 * SECOND; // 60 000
export const HOUR = 60 * MINUTE; // 3 600 000
export const DAY = 24 * HOUR; // 86 400 000
export const WEEK = 7 * DAY; // 604 800 000
// export const YEAR = 365 * DAY; // 31 536 000 000
export const YEAR = 365.25 * DAY; // 31 557 600 000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment