๐ฐexecution context
state to track the execution progress of code.
JS โฉ concept โฉ execution context
An execution context contains whatever implementation specific state is necessary to track the execution progress of its associated code.
It may contain (but not limited to) the following๏ผ
lexical environment - stores variables/this ...
code evaluation state - state needed to perform/suspend/resume evaluation of the code associated with this execution context.
๐ JS spec โฉ 8.2 Execution Contexts
Last updated
Was this helpful?