fork download
// your code goes here
// your code goes here
let t = 1;

var test = (arg) => {
console.log(arg);
console.log(t);
}

t = 2;
t++
test(3);
Success #stdin #stdout 0.04s 16648KB
stdin
Standard input is empty
stdout
3
3