Reblogged from JavaScript, JavaScript...:
The JavaScript this keyword is ubiquitous yet misconceptions abound.
What you need to know
Every execution context has an associated ThisBinding whose lifespan is equal to that of the execution context and whose value is constant. There are three types of execution context: global, function and evaluation. Here's a tabular summary followed by a little more detail, and some examples: …
A great explanation . !