🔰running execution context

🚧 施工中

JSconceptexecution 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.

📘 JS spec ⟩ 8.2 Execution Contexts

A stack (call stack) is used to track execution context(s). The running execution context is always the top element of this stack.

Last updated