JavaScript – ‘this’ keyword
The creation of the execution context has two phases:
creation phaseexecution phase
We are at the last step of the creation phase, which is determining and setting the value of ‘this’ variable.
‘this’ variable is a variable that every execution context gets. It is stored in the execution context object.
Continue reading →