I am experimenting with the context of 'this' in Javascript and I have a situation that I don't understand.
Based on the way javascript works found from here, I understand that when a function is called on an object, the object is implicitly passed in as the firest parameter (or explicitly when using the call method.
But there are 2 cases that I tried to test that didn't do what I expected. Please look at the 2 lines after //Why doesn't ths work? Why are the follwoing 2 values undefined?
Here is the code in a jsFiddle (also pasted below)
function Beta(c, myValParam) {
var callback = c;
this.myVal = myValParam;
this.RunCallback = function () {
callback();
}
this.ShowVal = function () {
alert("FROM Beta: " + this.myVal);
}
}
function Alpha() {
this.myVal = "Alpha's Property";
this.ShowVal = function () {
alert("FROM Alpha: " + this.myVal);
}
}
a = new Alpha();
a.ShowVal();
b = new Beta(a.ShowVal, "Beta's property passed in");
b.ShowVal();
//Why doesn't ths work? Why are the follwoing 2 values undefined?
b.RunCallback.call(b); //Shouldn't this display the value in b?
b.RunCallback();
b2 = new Beta(function() { return a.ShowVal.call(a); }, "Z");
b2.RunCallback();
EDIT: Thanks to the answers from Quentin, dystroy and dough, I've updated the jsFiddle to show the values produced when the context reverts to the window object
And here is the code with the call to callback.call(this) which fixes the problem I was having