Hey, Splay, please note that there is actually no way you can access a variable that doesn’t lie within your scope. So, for example, config() and init() have completely different scopes and you wouldn’t be able to access the variable declared in scope 1 in your scope 2, unless scope 2 is nested within scope 1:
config(){
var order = {};
function() {
return order;
}
}
However, I would like to point out that these scopes do share a common context this, which would refer to their respective JetView class.