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. There are two most common ways to write an immediate execution 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. 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 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:
|
<<: MySql fuzzy query json keyword retrieval solution example
>>: CSS+HTML to realize the top navigation bar function
Preface The docker image cannot be deleted. Check...
This article uses an example to illustrate how to...
The animation part of CSS will be blocked by JS, ...
"We're writing our next set of mobile pr...
Preface The need for real-time database backup is...
Table of contents Prometheus monitors MySQL throu...
Start the centos8 virtual machine and press the u...
Preface In the process of managing and maintainin...
Configure Java environment variables Here, the en...
Table of contents Install CentOS7 Configuring Sta...
gzip is a command often used in Linux systems to ...
1. Introduction to Flex Layout Flex is the abbrev...
Windows: Support NTFS, FAT Linux supports file fo...
As shown below: update table1 as z left join tabl...
Copy code The code is as follows: <form action...