🔰call stack
a stack used to track execution contexts.
JS ⟩ concept ⟩ execution context ⟩ call stack
A stack that is used to track execution context(s).
📘 JS spec ⟩ 8.2 Execution Contexts
The running execution context is always at the top of the call stack.
execution context(s) are managed by call stack.
the top element of call stack is called running execution context.
Last updated
Was this helpful?