fork download
  1. Season = Object.freeze({
  2. Summer: 0,
  3. Fall: 1,
  4. Winter: 2,
  5. Spring: 3
  6. });
  7.  
  8. var winter = Season.Winter;
  9. //winter is 2
  10.  
  11. console.log(`winter is ${winter}`);
Success #stdin #stdout 0.04s 16884KB
stdin
Standard input is empty
stdout
winter is 2