const Season { SPRING : "spring" , SUMMER : "summer" , AUTUMN : "autumn" , WINTER : "winter" }; Object.freeze(Season); // 객체를 동결시키기 위함 console.log(Season.SPRING);