运行 ❯
获取你
自己的 Node
服务器
×
更改方向
更改主题,深色/浅色
转到 Spaces
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