Skip to content

Instantly share code, notes, and snippets.

@luismiddleton
Created November 16, 2019 22:13
Show Gist options
  • Save luismiddleton/53d6c75dec5812f283a9168a08753868 to your computer and use it in GitHub Desktop.
Save luismiddleton/53d6c75dec5812f283a9168a08753868 to your computer and use it in GitHub Desktop.
ENUM - Weekdays (ISO)
/**
* Weekday types (ISO).
* @enum {number}
*/
const Weekday = {
MONDAY: 1,
TUESDAY: 2,
WEDNESDAY: 3,
THURSDAY: 4,
FRIDAY: 5,
SATURDAY: 6,
SUNDAY: 7
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment