Home Web Front-end JS Tutorial Let you learn JS closures in minutes

Let you learn JS closures in minutes

Jan 24, 2017 am 11:08 AM

Closure is an important concept in Javascript. For beginners, closure is a very abstract concept, especially the definition given by the ECMA specification. Without practical experience, it is difficult to understand it from the definition. Therefore, this article will not describe the concept of closure in a long way, but will go directly to the practical information so that you can learn closure in minutes!

1 Closures at a glance

When I come into contact with a new technology, the first thing I do is to find its demo code. For us, looking at code can better understand the essence of a thing than natural language. In fact, closures are everywhere. For example, the core codes of jQuery and zepto are all included in a large closure, so I will write the simplest and most primitive closure first so that you can generate closures in your brain. Picture:

function A(){    function B(){
       console.log("Hello Closure!");
    }    return B;
}var C = A();
C();//Hello Closure!
Copy after login

This is the simplest closure.

After having a preliminary understanding, let’s briefly analyze how it is different from ordinary functions. The above code is translated into natural language as follows:

(1) Define ordinary function A

(2) Define the ordinary function B

in A (3) Return B

in A (4) Execute A, and assign the return result of A to the variable C

( 5) Execute C

Summarize these 5 steps into one sentence:

The internal function B of function A is referenced by a variable c outside function A.

Reprocess this sentence and it becomes the definition of closure:

When an internal function is referenced by a variable outside its external function, it A closure is formed.

So, when you perform the above 5 steps, you have already defined a closure!

This is closure.

2 The purpose of closure

Before understanding the function of closure, let’s first understand the GC mechanism in Javascript:

In Javascript, if an object is no longer referenced, then the object will be recycled by GC, otherwise the object will always be saved in memory.

In the above example, B is defined in A, so B depends on A, and the external variable C refers to B, so A is indirectly referenced by C.

In other words, A will not be recycled by GC and will always be stored in memory. In order to prove our reasoning, the above example is slightly improved:

function A(){    var count = 0;    function B(){
       count ++;
       console.log(count);
    }    return B;
}var C = A();
C();// 1C();// 2C();// 3
Copy after login

When we need to define some variables in the module and want these variables to be kept in memory When it is in the module but will not "pollute" the global variables, you can use closures to define this module.

3 High-end writing method

The above writing method is actually the most primitive writing method, but in actual applications, closures and anonymous functions will be used together. The following is a commonly used way to write a closure:

(function(document){    var viewport;    var obj = {
        init:function(id){
           viewport = document.querySelector("#"+id);
        },
        addChild:function(child){
            viewport.appendChild(child);
        },
        removeChild:function(child){
            viewport.removeChild(child);
        }
    }
    window.jView = obj;
})(document);
Copy after login

The function of this component is to initialize a container, and then you can add sub-containers to the container or remove a container.

The function is very simple, but another concept is involved here: executing the function immediately. A brief understanding is enough. What needs to be understood is how this writing method implements the closure function.

The above code can be split into two parts: (function(){}) and (), the first () is an expression, and this expression itself is an anonymous function, so add () after this expression. Indicates the execution of this anonymous function.

So the execution process of this code can be decomposed as follows:

var f = function(document){    var viewport;    var obj = {
        init:function(id){
            viewport = document.querySelector("#"+id);
        },
        addChild:function(child){
            viewport.appendChild(child);
        },
        removeChild:function(child){
            viewport.removeChild(child);
        }
    }
    window.jView = obj;
};
f(document);
Copy after login

It seems that the shadow of closure is seen in this code, but there is no return value in f , it seems that it does not meet the conditions for closure. Pay attention to this code:

window.jView = obj;
Copy after login

obj is an object defined in function f. This object defines a series of methods to execute window. jView = obj defines a variable jView in the window global object and points this variable to the obj object, that is, the global variable jView refers to obj. And the function in the obj object refers to the variable viewport in function f, so in function f The viewport will not be recycled by GC, and the viewport will always be saved in memory, so this writing method meets the conditions of closure.

4 Simple summary

This is the simplest understanding of closure. Of course, closure has a deeper understanding, which is much more involved. , you need to understand the execution context, activation object, and operating mechanism of scope and scope chain of JS. But as a beginner, you don’t need to understand these for now. After you have a simple understanding, you must use it in actual projects. When you use it more, you will naturally have a deeper understanding of closures!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Recommended: Excellent JS open source face detection and recognition project Recommended: Excellent JS open source face detection and recognition project Apr 03, 2024 am 11:55 AM

Face detection and recognition technology is already a relatively mature and widely used technology. Currently, the most widely used Internet application language is JS. Implementing face detection and recognition on the Web front-end has advantages and disadvantages compared to back-end face recognition. Advantages include reducing network interaction and real-time recognition, which greatly shortens user waiting time and improves user experience; disadvantages include: being limited by model size, the accuracy is also limited. How to use js to implement face detection on the web? In order to implement face recognition on the Web, you need to be familiar with related programming languages ​​and technologies, such as JavaScript, HTML, CSS, WebRTC, etc. At the same time, you also need to master relevant computer vision and artificial intelligence technologies. It is worth noting that due to the design of the Web side

What is the meaning of closure in C++ lambda expression? What is the meaning of closure in C++ lambda expression? Apr 17, 2024 pm 06:15 PM

In C++, a closure is a lambda expression that can access external variables. To create a closure, capture the outer variable in the lambda expression. Closures provide advantages such as reusability, information hiding, and delayed evaluation. They are useful in real-world situations such as event handlers, where the closure can still access the outer variables even if they are destroyed.

How to implement closure in C++ Lambda expression? How to implement closure in C++ Lambda expression? Jun 01, 2024 pm 05:50 PM

C++ Lambda expressions support closures, which save function scope variables and make them accessible to functions. The syntax is [capture-list](parameters)->return-type{function-body}. capture-list defines the variables to capture. You can use [=] to capture all local variables by value, [&] to capture all local variables by reference, or [variable1, variable2,...] to capture specific variables. Lambda expressions can only access captured variables but cannot modify the original value.

What are the advantages and disadvantages of closures in C++ functions? What are the advantages and disadvantages of closures in C++ functions? Apr 25, 2024 pm 01:33 PM

A closure is a nested function that can access variables in the scope of the outer function. Its advantages include data encapsulation, state retention, and flexibility. Disadvantages include memory consumption, performance impact, and debugging complexity. Additionally, closures can create anonymous functions and pass them to other functions as callbacks or arguments.

Solve the memory leak problem caused by closures Solve the memory leak problem caused by closures Feb 18, 2024 pm 03:20 PM

Title: Memory leaks caused by closures and solutions Introduction: Closures are a very common concept in JavaScript, which allow internal functions to access variables of external functions. However, closures can cause memory leaks if used incorrectly. This article will explore the memory leak problem caused by closures and provide solutions and specific code examples. 1. Memory leaks caused by closures The characteristic of closures is that internal functions can access variables of external functions, which means that variables referenced in closures will not be garbage collected. If used improperly,

The impact of function pointers and closures on Golang performance The impact of function pointers and closures on Golang performance Apr 15, 2024 am 10:36 AM

The impact of function pointers and closures on Go performance is as follows: Function pointers: Slightly slower than direct calls, but improves readability and reusability. Closures: Typically slower, but encapsulate data and behavior. Practical case: Function pointers can optimize sorting algorithms, and closures can create event handlers, but they will bring performance losses.

The relationship between js and vue The relationship between js and vue Mar 11, 2024 pm 05:21 PM

The relationship between js and vue: 1. JS as the cornerstone of Web development; 2. The rise of Vue.js as a front-end framework; 3. The complementary relationship between JS and Vue; 4. The practical application of JS and Vue.

How are closures implemented in Java? How are closures implemented in Java? May 03, 2024 pm 12:48 PM

Closures in Java allow inner functions to access outer scope variables even if the outer function has exited. Implemented through anonymous inner classes, the inner class holds a reference to the outer class and keeps the outer variables active. Closures increase code flexibility, but you need to be aware of the risk of memory leaks because references to external variables by anonymous inner classes keep those variables alive.

See all articles