Run ❯
Get your
own Node
server
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
enum CardinalDirections { North = 'North', East = "East", South = "South", West = "West" }; // logs "North" console.log(CardinalDirections.North); // logs "West" console.log(CardinalDirections.West);
North West