Tag view

#execution-context

Cross-subject tag search for related interview cards.

Clear

Results update as you type. Press / to jump straight into search.

Tagged with execution-context

1 card

JavaScript Medium Theory

Execution context, call stack, scope chain, and memory heap in JavaScript

JavaScript creates execution contexts for code execution, uses a call stack for active functions, resolves variables through the scope chain, and stores objects in memory.

  • Contexts track variables and `this`
  • The call stack orders active frames
  • Heap memory holds reference values

Execution context, call stack, scope chain, and memory heap in JavaScript