Tue Feb 11
typescript
Author:Noritaka
enum CoffeeSize { SHORT = 'SHORT', TALL = 'TALL', GRANDE = 'GRANDE', VENTI = 'VENTI', }; const coffee = { hot: true, size: CoffeeSize.TALL, } coffee.size = CoffeeSize.SHORT;