search
HomeWeb Front-endJS TutorialScopes and scope chains in JavaScript explained

解释 JavaScript 中的作用域和作用域链

In JavaScript, Scope defines how and in which part of the code we access variables and functions. Simply put, scope can help us improve the safety and readability of our code. Therefore, we can only access variables and functions within their scope and not outside them.

We will discuss various types of scopes in this tutorial.

Global Scope in JavaScript

Globally defined variables and functions are meant outside all blocks and functions that have global scope. We can access all variables and functions with global scope anywhere in the code.

grammar

Users can define variables with global scope according to the following syntax.

var global = 30;
function func() {
   var b = global; // global variable has a global scope so we can access it inside the function.
}

Here, the global variable global is declared outside any function, so it has global scope. It is then accessed inside function func by declaring local variable b and assigning the value of global variable global to it.

Example

In this example, we define a global variable with global scope. We access it inside a function called func() and return its value from the function.

In the output, we can observe that the func() function returns 20, which is the value of the global variable.

<html>
   <body>
      <h2 id="Defining-a-variable-with-i-global-i-scope"> Defining a variable with <i> global </i> scope </h2>
      <div id = "output"> </div>
      <script>
         let output = document.getElementById("output");
         var global = 20;
         function func() {
            return global;
         }
         output.innerHTML += "The value of variable named global: " + func();
      </script>
   </body>
</html>

Local/function scope

Local scope is also called function scope. Variables defined inside a function have function scope/local scope. We cannot access variables outside the function.

grammar

You can follow the syntax below to understand the local scope of variables and functions -

function func() {
   var local_var = "Hi!";
}
console.log(local_var); // this will raise an error

Here local_var There is a function scope inside the func() function, so we cannot access it outside it.

Example

In this example, we create the func() function. Inside the func() function, we have defined the local_var variable with local scope, which means we can only access it inside the func() function. We can see that if we try to access local_var outside the func() function, an error is thrown because local_var is undefined. To see this error, you need to open a console.

<html>
   <body>
      <h2 id="Defining-a-variable-with-i-function-i-scope">Defining a variable with <i> function </i> scope</h2>
      <div id = "output"> </div>
      <script>
         let output = document.getElementById("output");
         function func() {
            let local_var = 20;
            output.innerHTML += "The value of local_var inside fucntion: " + local_var + "<br/>";
         }
         func();
         // the local_var can't be accessed here
         output.innerHTML += "The value of local_var outside fucntion: " +local_var+ "<br/>";
      </script>
   </body>
<html>

Block Range

In JavaScript, we can use two curly braces ({ ….. }) to define a block. Block scope means that any variable we define within a particular block can only be accessed within the block and not outside the block. Variables declared using the let and const keywords have block scope.

grammar

Users can follow the following syntax to understand the block scope of variables.

{
   let block_var = 6707;
   // block_var accessible here
}

// we can't access the block_var variable here.

Here, we cannot access the block_var outside the curly braces because we have defined it inside the specific block.

Note - Variables declared using the var keyword do not have block scope.

Example

In this example, we use curly braces to define a block and define a variable num. We try to access this variable inside and outside the block. You can observe that we cannot access num outside the curly braces because we have defined it inside the block.

<html>
   <body>
      <h2 id="Defining-the-variable-with-i-block-i-scope">Defining the variable with <i> block </i> scope </h2>
      <div id="output"></div>
      <script>
         let output = document.getElementById("output");
         {
            const num = 200;
            output.innerHTML += "Value of num inside the block: " + num + "<br>";
         }
         // num is accessible here - outside the block
         output.innerHTML += "value of num outside the block: " + num + "<br>";
      </script>
   </body>
</html>

lexical scope

Lexical scope is the same as static scope. In JavaScript, when we execute a nested function and try to access any variable inside the nested function, it first finds the variable in the local context. If it cannot find the variable in the local context of the nested function, it tries to find it in the parent context of the function's execution, and so on. Finally, if the variable is not found in the global context, it is considered undefined.

grammar

Users can follow the following syntax to understand lexical scope.

var parent_var = 343;
var test = function () {
   console.log(parent_var);
};
test();

In the above syntax, we access parent_var from the scope of function execution. Since the function log() will not find parent_var in the local scope, it will try to find it in the scope where the function is called (i.e. the global scope).

Example

In this example, we define the test() function and nested() function inside. Furthermore, we are accessing global_var and parent_var inside the nested() function. Since JavaScript won't find these two variables in the local context, it will look first in the execution context of the nested() function and then in the execution context of the test() function.

<html>
   <body>
      <h2 id="Defining-the-variables-with-i-lexical-i-scope">Defining the variables with <i> lexical </i> scope</h2>
      <div id="output"></div>
      <script>
         let output = document.getElementById("output");
         var global_var = 576505;
         var test = function () {
            var parent_var = 343;
            var nested = function () {
               output.innerHTML += "The value of parent_var: " + parent_var + "<br/>";
               output.innerHTML += "The value of global_var: " + global_var + "<br/>";
            };
            nested();
         };
         test();
      </script>
   </body>
</html>

Scope chain

As scope chain the term implies, it is a scope chain. For example, suppose we define a nested function inside a function. In this case it can have its local scope and variables declared inside the nested function cannot be accessed in the outer function.

So, we are creating a scope chain; that's why we call it a scope chain.

grammar

Users can follow the following syntax to understand the scope chain.

function outer() {
   function inner() {
      // inner’s local scope.
      
      // we can access variables defined inside the outer() function as inner is inside the local scope of outer
   }
   
   // variables defined in the inner() function, can’t be accessible here.
}

Example

In this example, the inner() function is within the scope of the outer() function, which means that we cannot call the inner() function outside the outer() function. The inner() function creates the scope chain inside the outer() function.

<html>
   <body>
      <h2 id="Scope-Chain-in-JavaScript-i">Scope Chain in JavaScript </i></h2>
      <div id="output"></div>
      <script>
         let output = document.getElementById("output");
         function outer() {
            var emp_name = "Shubham!";
            function inner() {
               var age = 22;
               output.innerHTML += ("The value of the emp_name is " + emp_name) +"<br/>";
               output.innerHTML += "The value of the age is " + age;
            }
            inner();
            
            // age can't be accessible here as it is the local scope of inner
         }
         outer();
      </script>
   </body>
</html>

在本教程中,我们讨论了 JavaScript 中的作用域和作用域链。我们讨论了全局、局部/函数、块和词法作用域。在上一节中,我们了解了作用域链在 Javascript 中的工作原理。

The above is the detailed content of Scopes and scope chains in JavaScript explained. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:tutorialspoint. If there is any infringement, please contact admin@php.cn delete
JavaScript in Action: Real-World Examples and ProjectsJavaScript in Action: Real-World Examples and ProjectsApr 19, 2025 am 12:13 AM

JavaScript's application in the real world includes front-end and back-end development. 1) Display front-end applications by building a TODO list application, involving DOM operations and event processing. 2) Build RESTfulAPI through Node.js and Express to demonstrate back-end applications.

JavaScript and the Web: Core Functionality and Use CasesJavaScript and the Web: Core Functionality and Use CasesApr 18, 2025 am 12:19 AM

The main uses of JavaScript in web development include client interaction, form verification and asynchronous communication. 1) Dynamic content update and user interaction through DOM operations; 2) Client verification is carried out before the user submits data to improve the user experience; 3) Refreshless communication with the server is achieved through AJAX technology.

Understanding the JavaScript Engine: Implementation DetailsUnderstanding the JavaScript Engine: Implementation DetailsApr 17, 2025 am 12:05 AM

Understanding how JavaScript engine works internally is important to developers because it helps write more efficient code and understand performance bottlenecks and optimization strategies. 1) The engine's workflow includes three stages: parsing, compiling and execution; 2) During the execution process, the engine will perform dynamic optimization, such as inline cache and hidden classes; 3) Best practices include avoiding global variables, optimizing loops, using const and lets, and avoiding excessive use of closures.

Python vs. JavaScript: The Learning Curve and Ease of UsePython vs. JavaScript: The Learning Curve and Ease of UseApr 16, 2025 am 12:12 AM

Python is more suitable for beginners, with a smooth learning curve and concise syntax; JavaScript is suitable for front-end development, with a steep learning curve and flexible syntax. 1. Python syntax is intuitive and suitable for data science and back-end development. 2. JavaScript is flexible and widely used in front-end and server-side programming.

Python vs. JavaScript: Community, Libraries, and ResourcesPython vs. JavaScript: Community, Libraries, and ResourcesApr 15, 2025 am 12:16 AM

Python and JavaScript have their own advantages and disadvantages in terms of community, libraries and resources. 1) The Python community is friendly and suitable for beginners, but the front-end development resources are not as rich as JavaScript. 2) Python is powerful in data science and machine learning libraries, while JavaScript is better in front-end development libraries and frameworks. 3) Both have rich learning resources, but Python is suitable for starting with official documents, while JavaScript is better with MDNWebDocs. The choice should be based on project needs and personal interests.

From C/C   to JavaScript: How It All WorksFrom C/C to JavaScript: How It All WorksApr 14, 2025 am 12:05 AM

The shift from C/C to JavaScript requires adapting to dynamic typing, garbage collection and asynchronous programming. 1) C/C is a statically typed language that requires manual memory management, while JavaScript is dynamically typed and garbage collection is automatically processed. 2) C/C needs to be compiled into machine code, while JavaScript is an interpreted language. 3) JavaScript introduces concepts such as closures, prototype chains and Promise, which enhances flexibility and asynchronous programming capabilities.

JavaScript Engines: Comparing ImplementationsJavaScript Engines: Comparing ImplementationsApr 13, 2025 am 12:05 AM

Different JavaScript engines have different effects when parsing and executing JavaScript code, because the implementation principles and optimization strategies of each engine differ. 1. Lexical analysis: convert source code into lexical unit. 2. Grammar analysis: Generate an abstract syntax tree. 3. Optimization and compilation: Generate machine code through the JIT compiler. 4. Execute: Run the machine code. V8 engine optimizes through instant compilation and hidden class, SpiderMonkey uses a type inference system, resulting in different performance performance on the same code.

Beyond the Browser: JavaScript in the Real WorldBeyond the Browser: JavaScript in the Real WorldApr 12, 2025 am 12:06 AM

JavaScript's applications in the real world include server-side programming, mobile application development and Internet of Things control: 1. Server-side programming is realized through Node.js, suitable for high concurrent request processing. 2. Mobile application development is carried out through ReactNative and supports cross-platform deployment. 3. Used for IoT device control through Johnny-Five library, suitable for hardware interaction.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools