Given an object like this:
var MyObj = {
bar: 10,
foo: function() {
alert(MyObj.bar);
}
}
How can I generically reference MyObj
from MyObj.foo
such that if I were to change var MyObj
to var MyObj2
I wouldn't need to modify the foo
function?