I have this code:
var foo = {
x: 2,
bar: function() {
alert(this.x);
}
};
Why does foo.bar() alert 2 while [foo.bar][0]() alerts undefined?
|
I have this code:
Why does |
||||
|
So, technically
Generally, this expression:
Is interpreted as:
In this case To fix it, you need to explicitly bind
|
||||
|
|
|
when you do Just imaging that the method name is the number
And |
||||
|
|
|
Its because you are invoking the function on the array object. The "this" keyword is equal to the array.
In javascript the context in which a function is invoked can vary. The "this" keyword can have different values based on how it was invoked. If a function is invoked on an object (including arrays), the language will make "this" equal to the object that it was called on. On the other hand you can save the function of another object into another variable and invoke it. Like you did with this:
and the context will be the window. Research the call and apply methods in javascript. This will open you eyes on how flexible the "this" keyword is. This is a place of much confusion among many programmers coming from other languages, but once this principle is understood there is a lot of power that comes from it. JQuery for example uses "call" and "apply" to have the callbacks of events invoked in the context of the element that the event was fired on. |
|||
|
|
|
That is because when you make |
|||
|
|
[foo.bar][0].call(foo)works. – Blender Jan 31 at 6:44thispoints to the array[foo.bar], not the function itself. – xdazz Jan 31 at 6:59