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, East, South, West }; let currentDirection = CardinalDirections.North; // North is the first value so it logs '0' console.log(currentDirection); // throws error when commented in as 'North' is not a valid enum // currentDirection = 'North'; // Error: "North" is not assignable to type 'CardinalDirections'.
0