執行 ❯
Node 伺服器
×
更改方向
更改主題,深色/淺色
前往 Spaces
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