TS的枚举类 xyphf_和派孔明 2023-11-07 48 阅读1分钟 const enum Direction { Up = 'UP', Down = 'DOWN', Left = 'LEFT', Right = 'RIGHT', } const value = 'UP' if (value === Direction.Up) { console.log('go up!') }