🔰execution context
state to track the execution progress of code.
Last updated
Was this helpful?
state to track the execution progress of code.
Last updated
Was this helpful?
Was this helpful?
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