function Go() { x = 777; } function Start() { Go(); alert(x); }
function Go() { var x = 777; return x; } function Start() { alert(Go()); }