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