var v = 666;
function x(){return v;}
function y(){v = 42; return x();}
document.write(y());

xyz
42
xyz