Skip to content

Instantly share code, notes, and snippets.

@bamossza
Created March 12, 2017 09:40
Show Gist options
  • Save bamossza/e743366932d363857fb1315dbf6d17af to your computer and use it in GitHub Desktop.
Save bamossza/e743366932d363857fb1315dbf6d17af to your computer and use it in GitHub Desktop.
enum userStatus {
 Active = 1,
 Inactive,
 Block,
}
จากโค้ดข้างบนจะได้ว่า Active = 1, Inactive = 2, Block = 3
let status = userStatus.Active;
console.log(status); // Result: 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment