Preface: In the 1. What is a closure? 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. 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:
2. The role of closureWe 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:
|
>>: Html Select uses the selected attribute to set the default selection
1. Background A sql-killer process is set up on e...
Preface There are 4 types of operators in MySQL, ...
Stored Functions What is a stored function: It en...
Table of contents Basic Types any type Arrays Tup...
Operating system win10 MySQL is the 64-bit zip de...
Table of contents 1. Scenario 2. Basic functions ...
Overview When a 500 or 502 error occurs during ac...
1. Cause: The effect after the subbox is set to f...
Original link: https://vien.tech/article/157 Pref...
1. Linux kernel driver module mechanism Static lo...
1. Import the basic style of external CSS files U...
This article shares the manual installation tutor...
Table of contents Preface 1. for loop 2. while lo...
Web design is an emerging marginal industry that c...
Table of contents 1. What content usually needs t...