🔰execution context

state to track the execution progress of code.

JSconcept ⟩ execution context

circle-check
circle-info

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.

circle-info

call stack

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

Last updated