D
Douglas Crockford
I've noticed some confusion about the use of the this keyword. It is set for
each invocation of a function. There are 4 basic calling patterns:
1. foo()
2. bar.foo()
3. new foo()
4. foo.apply(bar)
In the first case, foo's this will be set to the global object (aka window).
This is an acceptable behavior for global functions, although null would have
been a better choice. This is very unfortunate behavior for inner functions,
because it makes it harder to write helper functions within a method.
In this second case, foo's this will be set to the bar object. This supports
calls to methods. Unlike some other languages (like Java), the use of this
within a method must be explicit.
In the third case, foo's this will be set to a new object that is linked to
foo.prototype. This supports constructor functions. Note that constructor
function must be called with the new prefix. If the new prefix is missing,
it degenerates to the first case, and the constructor will clobber the global
object.
In the fourth case, foo's this will be bar. This makes it possible to call a
function that is not a method of the object as though it is a method of the
object.
http://www.crockford.com
each invocation of a function. There are 4 basic calling patterns:
1. foo()
2. bar.foo()
3. new foo()
4. foo.apply(bar)
In the first case, foo's this will be set to the global object (aka window).
This is an acceptable behavior for global functions, although null would have
been a better choice. This is very unfortunate behavior for inner functions,
because it makes it harder to write helper functions within a method.
In this second case, foo's this will be set to the bar object. This supports
calls to methods. Unlike some other languages (like Java), the use of this
within a method must be explicit.
In the third case, foo's this will be set to a new object that is linked to
foo.prototype. This supports constructor functions. Note that constructor
function must be called with the new prefix. If the new prefix is missing,
it degenerates to the first case, and the constructor will clobber the global
object.
In the fourth case, foo's this will be bar. This makes it possible to call a
function that is not a method of the object as though it is a method of the
object.
http://www.crockford.com