search
HomeWeb Front-endJS TutorialA summary of JavaScript closures

A summary of JavaScript closures

Sep 06, 2017 pm 01:44 PM
javascriptjs

This time is a post-reading review

In-depth understanding of javasrcipt prototypes and closures - closures

Javasrcipt secret garden - closures and references of functions

After reading through two articles about closures, I still gained a lot, so I will summarize them in case I forget.

Okay, let’s start my performance

What is closure?

Closures are a very important feature of JavaScript, which means that the current scope can always access variables in the outer scope.

(Under normal circumstances, the current scope can only access itself or the superior scope). This part of the scope will be written next time.

The function is the only one in JavaScript that has its own scope. structure, so closure creation depends on the function.

When closing, the function has two situations,

One is the function as return value

The other is the function as Parameter passing

1. Function as return value


function nihao(){var i=0;return  function get(i){
    i++;    return i;
}
}var f=nihao();
f(1);

After we execute it on the console, the result is as follows

The execution result is 2

We assign the get function as the return value to the variable f. When f(1) is executed, it directly enters the scope of get, and 1 is assigned to i. After executing i++, i becomes 2, and then return i

2. The function is passed as a parameter


var a=2,b=function(c){      
    if(c>a){
      console.log(c);  
}     
};
(function(f1){    
    var a=5;
    f1(3)
})(b);

We print it on the console

The result is 3,

As you can see, we executed an anonymous wrapper (self-executing anonymous function), and then passed function b as a parameter to the anonymous function.

Executing f1(3) is actually executing b=function(3)

There is a problem here. When we execute it in the anonymous wrapper, a has been redefined to 5, but When f1 is executed, a changes to 2 again, so 3>2 is established. Console.log

According to the execution results, this is what I understand. When the f1 function is called, it actually enters b=function() is in scope, and b is a function defined through function assignment expression

So, functions b and a are actually in the same scope, and will also be executed at this time var a=2; is equivalent to redefining a, so when if(c>a) is executed, a has been redefined as 2

Thought it was over?

Wrong, I tested the result using function declaration again

Yes, the result is the same even if b is defined through function declaration. For 3

So this has nothing to do with the way the function is defined. Whether it is defined by a function declaration or a function assignment expression, the result is the same

So this can only be understood

When we execute f1(3), the scope has changed, from the scope in the anonymous wrapper to the scope where function b() or var b=function() is located

Then the if judgment will be executed, and a will be searched for, but it is not found in function b, and then it will be searched in the parent. A var a=2 is defined here; at this time, a is found, and then the if statement will continue to be executed.

3>2, then execute console.log, output 3

is summarized, the two seem to have no summary, it’s over,

Forget it, write down the next one first

Okay, let’s see how it is written in the Secret Garden


function Counter(start) {    
        var count = start;    
        return {
        increment: function() {
            count++;
        },

        get: function() {            
        return count;
        }
    }
}var foo = Counter(4);
foo.increment();
foo.get();

Look at the execution results

Let's analyze the execution sequence of this.

First assign the Counter method to the variable foo through a function assignment expression, then foo is now also a function

Because scope cannot be referenced or assigned in JavaScript, there is no way to access the count variable externally. The only way is through closures.

When assigning a value, a parameter 4 is also passed, then when we execute foo.increment(), it is already a closure at this time,

so the count is 4, Then execute count++;

Then execute foo.get(); and enter the second closure, which will return count. Because count++ is executed, count will be 5 at this time. Return count will return 5;

The above is the detailed content of A summary of JavaScript closures. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
Javascript Data Types : Is there any difference between Browser and NodeJs?Javascript Data Types : Is there any difference between Browser and NodeJs?May 14, 2025 am 12:15 AM

JavaScript core data types are consistent in browsers and Node.js, but are handled differently from the extra types. 1) The global object is window in the browser and global in Node.js. 2) Node.js' unique Buffer object, used to process binary data. 3) There are also differences in performance and time processing, and the code needs to be adjusted according to the environment.

JavaScript Comments: A Guide to Using // and /* */JavaScript Comments: A Guide to Using // and /* */May 13, 2025 pm 03:49 PM

JavaScriptusestwotypesofcomments:single-line(//)andmulti-line(//).1)Use//forquicknotesorsingle-lineexplanations.2)Use//forlongerexplanationsorcommentingoutblocksofcode.Commentsshouldexplainthe'why',notthe'what',andbeplacedabovetherelevantcodeforclari

Python vs. JavaScript: A Comparative Analysis for DevelopersPython vs. JavaScript: A Comparative Analysis for DevelopersMay 09, 2025 am 12:22 AM

The main difference between Python and JavaScript is the type system and application scenarios. 1. Python uses dynamic types, suitable for scientific computing and data analysis. 2. JavaScript adopts weak types and is widely used in front-end and full-stack development. The two have their own advantages in asynchronous programming and performance optimization, and should be decided according to project requirements when choosing.

Python vs. JavaScript: Choosing the Right Tool for the JobPython vs. JavaScript: Choosing the Right Tool for the JobMay 08, 2025 am 12:10 AM

Whether to choose Python or JavaScript depends on the project type: 1) Choose Python for data science and automation tasks; 2) Choose JavaScript for front-end and full-stack development. Python is favored for its powerful library in data processing and automation, while JavaScript is indispensable for its advantages in web interaction and full-stack development.

Python and JavaScript: Understanding the Strengths of EachPython and JavaScript: Understanding the Strengths of EachMay 06, 2025 am 12:15 AM

Python and JavaScript each have their own advantages, and the choice depends on project needs and personal preferences. 1. Python is easy to learn, with concise syntax, suitable for data science and back-end development, but has a slow execution speed. 2. JavaScript is everywhere in front-end development and has strong asynchronous programming capabilities. Node.js makes it suitable for full-stack development, but the syntax may be complex and error-prone.

JavaScript's Core: Is It Built on C or C  ?JavaScript's Core: Is It Built on C or C ?May 05, 2025 am 12:07 AM

JavaScriptisnotbuiltonCorC ;it'saninterpretedlanguagethatrunsonenginesoftenwritteninC .1)JavaScriptwasdesignedasalightweight,interpretedlanguageforwebbrowsers.2)EnginesevolvedfromsimpleinterpreterstoJITcompilers,typicallyinC ,improvingperformance.

JavaScript Applications: From Front-End to Back-EndJavaScript Applications: From Front-End to Back-EndMay 04, 2025 am 12:12 AM

JavaScript can be used for front-end and back-end development. The front-end enhances the user experience through DOM operations, and the back-end handles server tasks through Node.js. 1. Front-end example: Change the content of the web page text. 2. Backend example: Create a Node.js server.

Python vs. JavaScript: Which Language Should You Learn?Python vs. JavaScript: Which Language Should You Learn?May 03, 2025 am 12:10 AM

Choosing Python or JavaScript should be based on career development, learning curve and ecosystem: 1) Career development: Python is suitable for data science and back-end development, while JavaScript is suitable for front-end and full-stack development. 2) Learning curve: Python syntax is concise and suitable for beginners; JavaScript syntax is flexible. 3) Ecosystem: Python has rich scientific computing libraries, and JavaScript has a powerful front-end framework.

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 Article

Hot Tools

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),

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools