fork download
  1. var map = {};
  2. map['a'] = 1;
  3. map['b'] = 2;
  4. map['c'] = 3;
  5. print(map['a']);
  6. print(map['d']);
  7. delete map['c'];
  8. print(map['c']);
Success #stdin #stdout 0.02s 4940KB
stdin
Standard input is empty
stdout
1
undefined
undefined