I seem to not find a related Q/A around this topic
I have a JavaScript file say a.js that has a declaration like this as the first few lines.
var Object _context = new Object();
_context.keystore = [];
In another JavaScript file say b.js I try to access the keystore array where it gives an undefined
function accessContext() {
_context.keystore.push("hello");
}
I have the two .js files included under in a .html file as
<script src="a.js" type="text/javascript"></script>
<script src="b.js" type="text/javascript"></script>
I tried it on Firefox and 15.0.1 and Safari..
If I use just a plain array and not a array within a object as above, it works.
Also normal variables of the object _context such as a _context.status which is a string works from within the function accessContext().
Is there anything special to be taken care when accessing arrays within a object declared globally from within a function?

var, just_context = {keystore:[]};– Jack Dec 7 '12 at 1:49