DEV Community

Cover image for Understanding the Scope Chain, Scope, and Lexical Environment in JavaScript
bhavesh jadhav
bhavesh jadhav

Posted on • Originally published at bhaveshjadhav.hashnode.dev

Understanding the Scope Chain, Scope, and Lexical Environment in JavaScript

JavaScript's handling of variables and functions can be intricate, but grasping the concepts of scope, the scope chain, and the lexical environment is essential for writing efficient and bug-free code. In this blog post, we'll explore these fundamental concepts in detail.

What is Scope?

Scope defines where you can access a specific variable or function in your code. It determines the visibility of variables and is directly dependent on the lexical environment. There are three types of scope in JavaScript:

  1. Global Scope: Variables declared outside any function or block. They can be accessed from anywhere in the code.
  2. Function Scope: Variables declared inside a function. They are not accessible outside the function.
  3. Block Scope: Variables declared inside a block (with let or const). They are confined to the block in which they are declared.

What is the Lexical Environment?

A lexical environment is created whenever an execution context is created. It consists of the local memory along with the lexical environment of its parent (lexical parent).

Example of Lexical Environment

function a() {
    c();
    function c() {
        console.log(b);
    }
}
var b = 10;
a();
Enter fullscreen mode Exit fullscreen mode

Call Stack and Lexical Environment

Let's make a call stack diagram for the above problem:

  1. Global Execution Context:

    • b is declared and initialized with 10.
    • a is declared.
  2. Function a Execution Context:

    • c is declared.
  3. Function c Execution Context:

    • console.log(b) prints 10 as it looks up the scope chain to find b.

The lexical environment is the local memory combined with the lexical environment of its parent. In the example, c() is lexically sitting inside a(), which is lexically inside the global context.

What is the Scope Chain?

The scope chain is a chain of all lexical environments and parent references. It determines the order in which variables are accessed. When a function is called, the JavaScript engine first looks for the variable in the local scope, then moves up the scope chain to the parent scope, continuing until the global scope is reached.

Example of Scope Chain

var globalVar = 'I am global';

function outerFunction() {
    var outerVar = 'I am from outerFunction';

    function innerFunction() {
        var innerVar = 'I am from innerFunction';
        console.log(innerVar);   // I am from innerFunction
        console.log(outerVar);   // I am from outerFunction
        console.log(globalVar);  // I am global
    }

    innerFunction();
}

outerFunction();
Enter fullscreen mode Exit fullscreen mode

Hoisting with let and const

Variables declared with let and const are hoisted, but unlike var, they are not initialized until their definition is evaluated. This creates a "temporal dead zone" from the start of the block until the initialization is complete.

Temporal Dead Zone

The temporal dead zone (TDZ) is the period between when a variable is hoisted and when it is initialized. Accessing a variable in the TDZ results in a ReferenceError.

Example of Temporal Dead Zone

console.log(a); // Uncaught ReferenceError: Cannot access 'a' before initialization
let a = 5;
Enter fullscreen mode Exit fullscreen mode

In this example, a is in the TDZ from the start of the block until it is initialized with 5.

Summary

Understanding scope, the scope chain, and the lexical environment is fundamental for mastering JavaScript. Here's a quick recap:

  • Scope: Defines where you can access variables and functions.
  • Lexical Environment: Local memory plus the lexical environment of the parent.
  • Scope Chain: The chain of lexical environments determining variable access order.
  • Hoisting: let and const are hoisted but not initialized, creating a temporal dead zone.

With this knowledge, you can write more predictable and maintainable JavaScript code. Happy coding!


This post provides an in-depth look at these crucial concepts, helping you understand how JavaScript manages scope and variable accessibility. Feel free to share your thoughts and questions in the comments below!

Top comments (0)