nodejs global variable code example
Example 1: node.js save global variable
global.number = 5;
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";