JavaScript closure details

JavaScript closure details

Preface:

In the JavaScript part, closures are very important, so we will summarize the relevant knowledge of closures today. First of all, before understanding closures, we must first know the relevant knowledge of scope. The previous blog post about scope has explained it, so I will not repeat it here. Next, let’s take a look at what is a closure?

1. What is a closure?

closure is a function that has access to variables in the scope of another function. ----- JavaScript Advanced Programming

Simply put, a closure is a function whose characteristics are: a scope can access the local variables inside another function.

Here is a simple example:

For example, we now have a function, and we define a local variable inside it. If other scopes can access this local variable, a closure is generated. So we define another function inside this function to see if the function scope inside can access the local variables in the outer function.

 function f1(){
            var num = 10;
            function f2(){
                console.log(num);
            }
            f2();
        }
        f1();

The printed result is:

It can be found that the value is printed out successfully, so a closure is generated.
But some readers may have questions: The f2 function itself is inside the f1 function, and it can use the variables of the parent function. Then we access the variable in the scope outside the f1 function and see what the result is.

We change the call of f2 function to the return value of f1 function, and then call f1 function outside the function, as follows:

 function f1(){
            var num = 10;
            function f2(){
                console.log(num);
            }
           return f2()
        }
        var f = f1();
        f();

At this point, it is equivalent to the scope outside f1 accessing the variables of its internal function. The print result is:

It can be found that the local variables inside it can also be used here, and closures are generated.

So we can conclude that:

Closure: A scope can access local variables within another function.

2. The role of closure

We know that the local variables defined inside a function can only be used inside the function, and they will be destroyed when we finish using them. However, with closures, this local variable will be used outside the function and will not be destroyed until its external caller has finished calling it. Therefore, the role of closures is to extend the scope of the variable.

This is the end of this article about JavaScript closures. For more information about JavaScript closures, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Let's talk in detail about the role of closures in JS
  • Detailed explanation of the principle and function of JavaScript closure
  • JavaScript Advanced Closures Explained
  • JavaScript Closures Explained
  • Let's learn what javascript closures are

<<:  Pay attention to the order of TRouBLe when writing shorthand properties in CSS (to avoid pitfalls)

>>:  Html Select uses the selected attribute to set the default selection

Recommend

A case study on MySQL optimization

1. Background A sql-killer process is set up on e...

Summary of the use of special operators in MySql

Preface There are 4 types of operators in MySQL, ...

Learn about TypeScript data types in one article

Table of contents Basic Types any type Arrays Tup...

Install MySQL 5.7.17 in win10 system

Operating system win10 MySQL is the 64-bit zip de...

JavaScript Sandbox Exploration

Table of contents 1. Scenario 2. Basic functions ...

Detailed explanation of PHP+nginx service 500 502 error troubleshooting ideas

Overview When a 500 or 502 error occurs during ac...

Detailed explanation of four solutions to floating problems in CSS layout

1. Cause: The effect after the subbox is set to f...

Ubuntu regularly executes Python script example code

Original link: https://vien.tech/article/157 Pref...

Linux kernel device driver Linux kernel basic notes summary

1. Linux kernel driver module mechanism Static lo...

MySQL 8.0.13 manual installation tutorial

This article shares the manual installation tutor...

Detailed explanation of various loop speed tests in JS that you don’t know

Table of contents Preface 1. for loop 2. while lo...

The qualities and abilities a web designer should have

Web design is an emerging marginal industry that c...

Ideas and practice of multi-language solution for Vue.js front-end project

Table of contents 1. What content usually needs t...