function fnc(){ var localVariable = 5; window.globalVariable = localVariable; }; fnc(); alert([typeof localVariable, typeof globalVariable])