The code execution context object is a “dump” in which the function parameters lie, the variable object (the temporary tree on which the function code works), the this property, the scope property. Every time an interpreter needs to take a variable, it goes to look at the context object CURRENT, if it is not there, it looks where the scope property refers to, goes to this stack object and “takes” the execution context below the stack object ( or the Closure object takes, if it comes across).
The code execution context object is an ABSTRACT object (work model). If the code is global, then this code execution context object is called Global. If the code is a code inside a function, then such an object is the context of code execution called Local.
This object cannot be "recognized", one can only use the variables and parameters that lie in it.
The this property of the context function of executing the function code points to an object from the BOM, in which there is a property that refers to this function (points to the object in which this function lies).