fork download
  1. var x = 23;
  2.  
  3. (function(){
  4. var x = 43;
  5. (function random(){
  6. x++;
  7. console.log(x);
  8. var x = 21;
  9. })();
  10. })();
Success #stdin #stdout 0.04s 19108KB
stdin
Standard input is empty
stdout
NaN