Dynamic global variable across multiple JS files?
I need to use dynamic global variable declared in one .js file can be used in another .js file?
for example 3 js files
1. one.js
2. two.js
3. global.js
I declared dynamic global variable in
global.js as
var token = "token from server"
can this token be used in one.js and two.js files ???