JavaScript Closures Explained

JavaScript Closures Explained

1. What is a closure?

A combination of the function itself and the state of the environment in which the function is declared.

1.2 Memoization of closures: functions remember the environment in which they were defined

1.3 Closure phenomenon: closure is created every time a function is created in JS

2. Functions of closures: memorization, simulation of private variables

2.1 Memory

Example:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <script>
        function createCheckTemp(standardTemp){
            function checkTemp(n){
                if(n<=standardTemp){
                    alert('Your temperature is normal');
                }else{
                    alert('Your body temperature is high');
                }
            }
            return checkTemp;
        }
        var checkTemp_A = createCheckTemp(37.1);
        var checkTemp_B = createCheckTemp(37.3);
        checkTemp_A(37.2);
        checkTemp_A(37.0);
        checkTemp_B(37.2);
        checkTemp_B(37.0);
    </script>
</body>
</html>

detail:

1: Memory of closures

2: The function return checkTemp is a function name

3: Define var checkTemp_A and checkTemp_A to get the function name checkTemp instead of calling it directly

2.2 Simulating private variables (secure variables)

Closure code example:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <script>
        // Encapsulate a function, the function of this function is to privatize the variable function fun(){
            // Define a local variable a
            var a=0;
            return {
                getA:function(){
                    return a;
                },
                add:function(){
                    a++;
                },
                pow:function(){
                    a*=2;
                }
            }
        }
        var obj = fun();
        // If you want to use variable a outside the fun function, the only way is to call the getA() method console.log(obj.getA());
        // Want to add 1 to variable a obj.add();
        obj.add();
        obj.add();
        console.log(obj.getA());
        obj.pow();
        console.log(obj.getA());
    </script>
</body>
</html> 

In fact, it is understandable that JavaScript cannot define function types like C++ and Java, such as int sum(), int add(), int pow(), etc., so it is necessary to use the characteristics of closures: that is, to use the memory of the closure within the function to operate on the variables within the function, and then return the name of the closure function to perform internal data operations.

3.IIFE (Immediately Invoked Function Expression):

JS special function, once defined, is called immediately

3.1 IIFE role 1- assigning values ​​to variables

Example:

Compare the before and after pictures to reflect the programming level. . . Simplify the code. . Beautiful. . .

3.2 IIFE Function 2-Converting Global Variables into Local Variables

In this case, the results of the following five statements are all 5, because there is no concept of block scope in JS (this is the understanding for now), so var i becomes a global variable, and i=5 after the for loop. So the results of all five statements are 5.

Then we can use IIFE to solve this problem, which essentially uses the closure feature of the function.

By passing the global variable i into the IIFE function, the global variable becomes a local variable. By using the closure feature of the JS function , the function of arr[2]() in the figure can be implemented.

Summarize

This article ends here. I hope it can be helpful to you. I also hope that you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • JavaScript Advanced Closures Explained
  • JavaScript Closures Explained
  • Javascript scope and closure details
  • Detailed explanation of JavaScript closure issues
  • Detailed explanation of Javascript closures and applications
  • Detailed explanation of js closure and garbage collection mechanism examples
  • Analysis of JS closure principle and its usage scenarios
  • Detailed explanation of the principle and function of JavaScript closure

<<:  CSS fixes the container level (div...) tag in one position (on the far right of the page)

>>:  Before making a web page, let’s take a look at these so-called specifications

Recommend

A brief discussion on the correct approach to MySQL table space recovery

Table of contents Preliminary Notes Problem Repro...

Detailed tutorial on using cmake to compile and install mysql under linux

1. Install cmake 1. Unzip the cmake compressed pa...

mysql is not an internal command error solution

The error "mysql is not an internal command&...

5 VueUse libraries that can speed up development (summary)

Table of contents What utilities does VueUse have...

How to use MySQL DATEDIFF function to get the time interval between two dates

describe Returns the time interval between two da...

Ideas and codes for implementing waterfall flow layout in uniapp applet

1. Introduction Is it considered rehashing old st...

How to implement hot deployment and hot start in Eclipse/tomcat

1. Hot deployment: It means redeploying the entir...

When is it appropriate to use dl, dt, and dd?

dl:Definition list Definition List dt:Definition t...

WeChat applet implements login interface

The login interface of WeChat applet is implement...

Install Docker environment in Linux environment (no pitfalls)

Table of contents Installation Prerequisites Step...

Box-shadow and drop-shadow to achieve irregular projection example code

When we want to add a shadow to a rectangle or ot...

Sample code for a large drop-down menu implemented in pure CSS

This is a large drop-down menu implemented purely...

Detailed process of using Vscode combined with docker for development

Preface Using Docker and VS Code can optimize the...

A brief analysis of Vue's asynchronous update of DOM

Table of contents The principle of Vue asynchrono...

Detailed explanation of common Docker commands

1. Help Command 1. View the current Docker versio...