I asked here: Does Node.js require inheritance?
And I was told that I can set variables to the global scope by leaving out the variable.
This does not
You can just use the global object.
var X = ['a', 'b', 'c']; global.x = X; console.log(x); //['a', 'b', 'c']