function change() { window.x=11; } x=10; change(x); alert(x);
function change() { x=11; } var x=10; change(); alert(x);