Created
July 21, 2019 09:47
-
-
Save AliN11/39b79c6c562a2b1469a645e0e486de8e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
enum Colors {Red, Green, Blue}; | |
console.log(typeof Colors); // object | |
console.log(Colors); | |
/* | |
{ | |
'0': 'Red', | |
'1': 'Green', | |
'2': 'Blue', | |
Red: 0, | |
Green: 1, | |
Blue: 2 | |
} | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment