Skip to content

Instantly share code, notes, and snippets.

@luismiddleton
Last active November 16, 2019 22:13
Show Gist options
  • Save luismiddleton/fb51893d23641f3f76e161afdeaa1d7d to your computer and use it in GitHub Desktop.
Save luismiddleton/fb51893d23641f3f76e161afdeaa1d7d to your computer and use it in GitHub Desktop.
ENUM - Seconds
/**
* Types of seconds.
* @enum {number}
*/
const Seconds = {
MINUTE: 60,
HOUR: 3600,
DAY: 86400,
WEEK: 604800
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment