(Sorry, another this question in javascript.)
I have the code below, and I'm wondering what 'this' represents in the call at the end-- the Window or the Bird?
var Bird = (function () {
Bird.name = 'Bird';
function Bird(name) {
this.name = name;
}
Bird.prototype.move = function (feet) {
return alert(this.name + (" flew" + feet + "ft."));
};
return Bird;
}).call(this);
call, the first argument is the context/scope you are executing in, it does not get passed as the parameter to the function. To test what you are suggesting correctly, one would try(function(){ console.log(this); }).call(this);. If you want to see the argument, try(function(arg){ console.log(this, arg); }).call(this, this);. Both of these tests show that 'this' iswindow. – Matt Apr 26 '12 at 17:43call(this, "okay")and "okay" is the first param to the anon function that defines Bird. Using "this, this", it is the window. – goldilocks Apr 26 '12 at 17:53