var global = window || this; var test = "global test"; function f() { var test = "local test"; alert( test ); alert( global.test ); global.test = "new value" } f(); alert( test );