fork download
  1. // your code goes here
  2. // your code goes here
  3. let t = 1;
  4.  
  5. var test = (arg) => {
  6. console.log(arg);
  7. console.log(t);
  8. }
  9.  
  10. t = 2;
  11. t++
  12. test(3);
Success #stdin #stdout 0.04s 16648KB
stdin
Standard input is empty
stdout
3
3