function x(){v = 42; return function(){return v;}} var f = x(); var v = 43; document.write(v); document.write(f()); document.write(v);