DEV Community

Cover image for Advanced JavaScript Series - Part 2: Execution Context and Call Stack
Pranav
Pranav

Posted on • Updated on

Advanced JavaScript Series - Part 2: Execution Context and Call Stack

Execution Context-

  • Execution context is the environment that enables JavaScript code to execute. It decides which piece of code currently gets access to all the functions, variables and objects used in the code for its execution.
  • In this the code gets evaluated line by line, variables & objects etc get stored in the Memory heap that are then used during the execution of that piece of code thus forming an environment that enables execution of the JS code.

Call Stack/ Execution Stack-

  • Call Stack is a data-structure that maintains the list of the functions being called and executed/ the execution context currently being executed by the JavaScript engine.
  • It follows a LIFO (Last-In, First-Out) principle, meaning that the last function called gets to the top of the call stack and once execution is finished, it pops from the stack. Execution Stack Credits- Babs Craig
    Note-
  • Natively, JavaScript is a single-threaded, synchronous programming language. (check reference 3 and 5 in case of doubt)
  • It means that when a script is run, the JS engine runs the code line by line, beginning at the top and working its way down.
  • As a result, the JavaScript engine only has one call stack and can only perform one action at a time.

Relation between Execution Context and Call Stack-

  • When the execution of the JavaScript code starts, a Global Execution context is created and pushed onto the Call Stack. This Global Execution context can be seen in your Chrome browser in the form of the window object and in Node.js we can find the same in the form of the global object.
  • Every function, once called for execution, generates an execution context that then gets pushed to the top of the call stack thus getting in line to get the access to all the resources (variables, functions, objects) required for its execution.
  • After the execution of all the functions in the code is complete, the Global Execution context is also popped off the call-stack. Call Stack Credits- Danny Zhang

3 Types of Execution Context-

1) Global Execution Context-

  • It is the base or the default execution context. Any code that is not present inside any function is said to be inside the Global Execution context that is why we are able to access them using the window object.
  • It also provides us with the this keyword to help reference the window object.
  • Create a memory heap in order to store variables and function references.
  • Stores all the function declarations in the memory heap and the variables in the Global Execution context with its initial values as undefined. Global Execution Context illustration Credits- Lexical

2) Functional Execution Context-

  • These are created for every function call thus, unlike Global Contexts, we can have multiple Functional Execution contexts.
  • They can access all the code of the Global Context but the Global Context cannot access the code of the Functional Execution context.

3) Eval Execution Context-

  • Any code executed via the eval function has its own executional context.

Creating an Execution Context-

1) Creation Phase-

  • Task 1- Creation of Activation/ Variable object

    • The activation object is like a memory unit/ container for storing the variables, objects etc related to a function.
  • Task 2- Creation of Scope Chain

    • Scope chain is the list of variables and objects created within a particular function.
    • Once the scope chain is formed, it helps initialize value of this.

2) Execution Phase-

  • The JS engines scan over the function in the code one more time, updating the variable object with the values of the variables and then running the code.

What is Stack Overflow/ Call Stack Overflow:

  • Stack overflow occurs when the call stack becomes full/ can fit no more function calls or contexts.
  • This may occur when a recursive function is run with no exit point and the function exceeds the storage limit of the call stack.
  • Storage of the call stack is dependent on the host environment, the web browser or the Node.js env.
    Stack Overflow code Open Code in JS Fiddle

  • Watch this amazing illustration on this topic to grasp the topic even better. We will understand the callback queue in this illustration in the future parts of the series.


Connect with me-


Appendix-

  1. Advanced JavaScript Series - Part 1: Behind the scenes (JavaScript Engine, ATS, Hidden Classes, Garbage Collection)
  2. Advanced JavaScript Series - Part 2: Execution Context and Call Stack
  3. Advanced JavaScript Series - Part 3: Weird JS behavior, Strict Mode and Hoisting, Temporal Dead Zone
  4. Advanced JavaScript Series - Part 4.1: Global, Function and Block Scope, Lexical vs Dynamic Scoping
  5. Advanced JavaScript Series - Part 4.2: Scope Chains and their working, Lexical and Variable Environments
  6. Advanced JavaScript Series - Part 5: IIFE & 'this' keyword in JS(tricky Eg.), call(), apply(), bind(), Currying(Functional Prog)
  7. Advanced JavaScript Series - Part 6.1: Everything in JS is an Object? Weird JS behaviors revealed, Primitive Non-Primitive Types
  8. Advanced JavaScript Series - Part 6.2: Pass by Value & Pass by Reference, Shallow & Deep Copy, Type Coercion
  9. Advanced JavaScript Series - Part 7: First Class Citizens & Higher Order Functions
  10. Advanced JavaScript Series - Part 8: The 2 Pillars~ Closures & Prototypal Inheritance
  11. Advanced JavaScript Series - Part 9: Constructor Functions, Object Oriented, new keyword

References-

  1. https://www.javatpoint.com/javascript-execution-context
  2. https://zerotomastery.io/cheatsheets/javascript-cheatsheet-the-advanced-concepts/?utm_source=udemy&utm_medium=coursecontent#call-stack-memory-heap
  3. https://www.javatpoint.com/javascript-call-stack
  4. https://medium.com/@alexandrawilll/javascript-execution-context-call-stack-and-event-queue-d58b672d76f7#:~:text=Every%20line%20of%20code%20in%20JS%20has%20an%20execution%20context.&text=When%20a%20function%20executes%2C%20an,off%20of%20the%20call%20stack.
  5. https://stackoverflow.com/questions/16523870/is-javascript-synchronousblocking-or-asynchronousnonblocking-by-default

Oldest comments (6)

Collapse
 
revskill10 profile image
Truong Hoang Dung

Such a .... useless post as no demonstration code to follow. But thanks for the keywords. Keep up the good work !

Collapse
 
pranav016 profile image
Pranav • Edited

I have added some illustrations and code samples for it, let me know if it could be further improved :)
Sorry if it disappointed you, but thank you for the feedback I'll try to improve this post even more and also keep it in mind for future parts of this adv. js series! πŸ™‚

Collapse
 
fawazsullia profile image
fawazsullia

Good one. Suggesting you to add more diagrams and visuals for better understanding

Collapse
 
pranav016 profile image
Pranav

Thank you for the feedback, I'll surely add more illustrations to the article for better understanding! πŸ™‚

Collapse
 
trunghieu99tt profile image
Trung Hieu Nguyen

IMO, this is not really "advanced javascript".

Collapse
 
pranav016 profile image
Pranav

Respect your opinion but this is just the 2nd part, a lot more to comeπŸ™‚
Do check out the first part as well(link in appendix), explains about hidden classes and inline caching and the complete behind the scenes processing of the code.