What this is changes with the scope of each function. However, myArray will be visible to inner function. Example:
var ExampleObject = function() {
var myArray = new Array();
this.example = function() {
alert(myArray);
};
}
var exampleObj = new ExampleObject();
exampleObj.example();