avoid global variables javascript code example
Example 1: python global variables
global var1
var1 = 'whatever'
Example 2: javascript define global variable
window.myGlobalVariable = "I am totally a global Var"; //define a global variable
var myOtherGlobalVariable="I too am global as long as I'm outside a function";