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.99;
  11. test(10);
Success #stdin #stdout 0.03s 16904KB
stdin
Standard input is empty
stdout
10
2.99