运行 ❯
获取
你自己的 Node
服务器
×
更改方向
更改主题,黑暗/明亮
前往空间
enum CardinalDirections { North = 1, East, South, West }; // logs 1 since we initialized the first value to something other than '0' console.log(CardinalDirections.North); // logs 4 as it continued on from the initial '1' value console.log(CardinalDirections.West);
1 4