If at call time it is being called on an object, it will have the value of that object. Otherwise it will have the value of window.
var obj = { f: function () { return this; } }; // returns the object obj.f() // returns window var f = obj.f; f();
An alternate fix for the issue would be:
var obj = (function () { var that = {}; that.doSomethingLater = function () { setTimeout(function () { console.log(that); }, 1000); }; return that; })(); obj.doSomethingLater();
If at call time it is being called on an object, it will have the value of that object. Otherwise it will have the value of window.
What is happening here is that the setTimeout() calls the lambda at some later point, and it's no longer in the context of the object.An alternate fix for the issue would be:
An article on the subject (that also talks about call and apply): http://www.robertsosinski.com/2009/04/28/binding-scope-in-ja...