I defined a variable in one of my JavaScript files. I want to access the value of that variable among JavaScript files. In one file I am initializing the value of that varia
also, once globally defined, you might need to be accessing it via the window object like this: window.your_variable OR window['your_variable']