JavaScript immediate execution function usage analysis

JavaScript immediate execution function usage analysis

We know that in general, a function must be called before it can be executed. As shown below, we define a function and call it.

function fn(){
    console.log(1);
    }
    fn();

The print result is:

If we don't call it, the results we print will never be displayed.
So here we will mention our immediately executed function. The so-called immediately executed function is a function that can be executed immediately without being called.

There are two most common ways to write an immediate execution function:

  • (function(){})()
  • (function(){}())

For example:

 (function fn(){
            console.log(2);
        })()

The print result is:

Printing successful.

The second parentheses in the immediately executed function are equivalent to calling the function. We can also pass parameters to the immediately executed function. Write the parameters we want to pass in the second () as actual parameters.

as follows:

 (function fn(a,b){
    console.log('a+b='+a+b);
 })(1,2)

The print result is:

The second method of using the immediately executed function is basically similar to the first one, so I will not go into details here.
It should be noted that if there are multiple immediately executed functions, they need to be separated by commas, otherwise an error will be reported. At the same time, in the immediately executed function, it can also be written in the form of an anonymous function.

So what are the functions or benefits of executing functions immediately?

Its biggest function is to create an independent scope. We know that there is no concept of private scope in javascript . If some variables are declared in the global or local scope in a project developed by multiple people, they may be accidentally overwritten by other people with variables of the same name. However, the variables in the immediately executed function are all local variables, and there will be no naming conflicts.

This is the end of this article about JavaScript immediate execution functions. For more relevant JavaScript immediate execution function content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • JavaScript Basics: Immediate Execution Function
  • Analysis of usage of anonymous functions executed immediately in JS
  • Analysis of JS immediate execution function function and usage
  • Detailed explanation of examples of immediately executing functions in JavaScript
  • Detailed explanation of immediately executed functions in JS

<<:  MySql fuzzy query json keyword retrieval solution example

>>:  CSS+HTML to realize the top navigation bar function

Recommend

Docker image cannot be deleted Error: No such image: xxxxxx solution

Preface The docker image cannot be deleted. Check...

A brief discussion on whether CSS animation will be blocked by JS

The animation part of CSS will be blocked by JS, ...

Detailed explanation of real-time backup knowledge points of MySQL database

Preface The need for real-time database backup is...

Prometheus monitors MySQL using grafana display

Table of contents Prometheus monitors MySQL throu...

How to quickly modify the root password under CentOS8

Start the centos8 virtual machine and press the u...

15 Linux Command Aliases That Will Save You Time

Preface In the process of managing and maintainin...

How to configure Java environment variables in Linux system

Configure Java environment variables Here, the en...

Mac VMware Fusion CentOS7 configuration static IP tutorial diagram

Table of contents Install CentOS7 Configuring Sta...

Linux gzip command compression file implementation principle and code examples

gzip is a command often used in Linux systems to ...

A brief discussion on Flex layout and scaling calculation

1. Introduction to Flex Layout Flex is the abbrev...

Linux system disk formatting and manually adding swap partition

Windows: Support NTFS, FAT Linux supports file fo...

Example of asynchronous file upload in html

Copy code The code is as follows: <form action...