fork download
  1.  
  2. let x = {};
  3. x[/abc/] = 1;
  4. x[function() { return 1 }] = 2;
  5.  
  6. let f = function() { return 1 };
  7. console.log(x[f]); // 2
  8.  
  9. let r = /abc/;
  10. console.log(x[r]); // 1
Success #stdin #stdout 0.03s 16480KB
stdin
Standard input is empty
stdout
2
1