🔰execution context

state to track the execution progress of code.

JSconcept ⟩ execution context

running execution context

At any point in time, there is at most one execution context that is actually executing code. This is known as the running execution context.

call stack

A stack is used to track execution contexts. The running execution context is always the top element of this stack.

Last updated

Was this helpful?