var v = 666; function x(){return v;} function y(){var v = 42; return x();} document.write(y());
xyz
666
xyz
Lexical scoping, hooray.