Skip to content

Instantly share code, notes, and snippets.

@bamossza
Created March 12, 2017 09:39
Show Gist options
  • Save bamossza/408f9da4a239422b2a7631e0716a75a5 to your computer and use it in GitHub Desktop.
Save bamossza/408f9da4a239422b2a7631e0716a75a5 to your computer and use it in GitHub Desktop.
enum userStatus {
 Active,
 Inactive,
 Block
}
..
let status = userStatus.Active;
console.log(status); // Result: 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment