enum Season { Summer = 1, Fall = 2, Winter = 3, Spring = 4}let baseWinter = Season.Winter//baseWinter is 3console.log(baseWinter)