Skip to content

Instantly share code, notes, and snippets.

@zolotyh
Created December 16, 2021 10:54
Show Gist options
  • Save zolotyh/ed637e0ec5d4543f4db5dcb4f4af0b54 to your computer and use it in GitHub Desktop.
Save zolotyh/ed637e0ec5d4543f4db5dcb4f4af0b54 to your computer and use it in GitHub Desktop.
enum Gender {
Male,
Female
Other
}
console.log(Gender.Male); // ??
console.log(Gender[1]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment