fork download
  1. //In Javascript there are no enum type
  2. Size = Object.freeze({
  3. xs: 1, s: 2, m: 3, l: 4, xl: 5
  4. })
  5.  
  6. let small = Size.s;
  7. let lage = Size.l;
  8.  
  9. const chg = () => lage < small;
  10.  
  11. console.log(chg())
Success #stdin #stdout 0.03s 16640KB
stdin
Standard input is empty
stdout
false