1. IntroductionIn JavaScript, a function is actually a data, which means that a function can also be assigned to a variable. This article will introduce some uses of higher-order functions in JavaScript. 2. RecursionThe so-called recursion refers to a function calling itself. To put it in a story: Once upon a time there was a mountain, in the mountain there was a temple, in the temple there was an old monk who was telling a story to a young monk! What is the story? "A long time ago there was a mountain, in the mountain there was a temple, in the temple there was an old monk, he was telling a story to a young monk! What was the story? 'A long time ago there was a mountain, in the mountain there was a temple, in the temple there was an old monk, he was telling a story to a young monk! What was the story?...'" In a sense, recursion is similar to looping. Both execute the same code repeatedly, and both require a termination condition to avoid infinite loops or infinite recursion. The necessary conditions for recursion are as follows:
There are two ways to make recursive calls in JavaScript:
The following code shows simple recursion: var v = 1 // exit condition function fun() { console.log('first' + v + 'second function call') v++ if (v <= 3) { fun() } } fun() The execution results are as follows
3. Callback functionSince a function is the same as any data that can be assigned to a variable, it can certainly be defined, deleted, copied, and passed as an argument to other functions like any other data. When a function is passed as an argument to another function, the function that is passed as an argument is called a callback function. The function that uses the callback function is called the target function (outer function) The sample code is as follows: // Define a function that has two function type parameters, then execute the two functions separately and return their sum. function sum(a, b) { // Target function return a() + b() } function one() { // callback function return 1 } function two() { // callback function return 2 } console.log(sum(one, two)) // 3 The code execution process is as follows: When executing the 3.1 Anonymous callback functionThe so-called anonymous callback function is a function whose parameter in the target function is a function without a name. Modify the previous code to use an anonymous callback function. // Define a function that has two function type parameters, then execute the two functions separately and return their sum. function sum(a, b) { // Target function return a() + b() } console.log( sum( function () { // Anonymous callback function return 1 }, function () { // Anonymous callback function return 2 }, ), ) // 3 3.2 Callback function with parametersThe callback function can add parameters. The sample code is as follows: function multiplyByTwo(list, callback) { list.forEach(function (v, i) { callback(v * 2, i) }) } var list = [1, 2, 3] multiplyByTwo(list, function (v, i) { list[i] = v }) console.log(list) // [ 2, 4, 6 ] 3.3 Advantages and Disadvantages of Callback Functions
However, callback functions also have shortcomings. When the parameter of the target function is a callback function, the parameter of the callback function is another callback function, and the parameter of the other callback function is also a callback function...that is, nesting dolls, which forms a callback trap. In more serious cases, it can be called callback hell. 4. Self-tuning functionThe so-called self-tuning function is a function that is called immediately after definition. The sample code is as follows: ;(function () { console.log('self-tuning function') })() This syntax may look a bit intimidating, but it is actually nothing. We just put the definition of the anonymous function inside a pair of parentheses, followed by another pair of parentheses outside. The grammatical structure is shown in the figure below: In addition to the above two methods, there are several other uncommon methods for self-tuning functions. The sample code is as follows: ;+(function (v) { // Formal parameter var w = 100 // Local variable console.log('self-tuning function' + v) })(1) // Parameters!(function (v) { var w = 100 // local variable console.log('self-tuning function' + v) })(2) ~(function (v) { var w = 100 // local variable console.log('self-tuning function' + v) })(3) The advantage of using a self-adjusting anonymous function is that no global variables are created. The disadvantage is that such a function cannot be executed repeatedly (unless it is placed in a loop or another function). This also makes immediate functions very suitable for performing some one-time or initialization tasks. 5. Function of valueWhen a function is returned as the result of another function, the function returned as a result is called a function as a value. The sample code is as follows: function outer() { var v = 100 // Define another function in the body of a function -> internal (private) function return function () { // Use anonymous function to return v * 2 } } var result = outer() console.log(result) // [Function] The benefits of doing this are:
6. ClosureClosure is a concept proposed in functions. Simply put, a function definition refers to variables defined outside the function, and the function can be executed outside its definition environment. A closure occurs when an inner function is accessed in some way from any outer function scope. In fact, closure can be seen as a more general concept of function. Because it is no longer a function defined in the traditional sense. Closure conditions:
Disadvantages of closures:
The role of closure:
The principle of closure: We can divide the execution of a function into two stages, the precompilation stage and the execution stage;
Closures mainly utilize the characteristics of scope chains. A function defined inside a function will add the active object containing the function to its own scope chain. When the function is executed, its execution scope chain is destroyed, but because the scope chain of the inner function still references this active object, its active object will not be destroyed until the inner function is destroyed. Demo of closure implementation: // 1. Operate the local variables in the function through the returned internal function function fun () { var v = 100; // local variable // Access the local variable v by returning an object to complete the closure return { set: function (x) { v = x; }, get: function () { return v } } } var result = fun(); result.set(200) console.log(result.get()); // 200 // 2. Define a local variable to count how many times the function is called var generate_count = function () { var container = 0; return function () { container++ console.log(`This is the ${container}th call`); } } var result = generate_count(); result(); // This is the first call result(); // This is the second call result(); // This is the third call // 3. Modify the Math.pow() function so that when finding the square or cube of a number, there is no need to pass the second parameter each time/* Math.pow(4, 2) // 4 squared Math.pow(4, 3) // 4 cubed */ // Write a function generator function makePower (power) { return (number) => { return Math.pow(number, power) } } // Square let power2 = makePower(2) // Cube let power3 = makePower(3) // Calculate the square of 4 console.log(power2(4)) // 16 // Calculate the cube of 4 console.log(power3(4)) // 62 Summarize: This article introduces five higher-order functions in JavaScript, namely recursion, callback functions, self-adjusting functions, value functions, and the use and implementation of closures. This is the end of this article about JS higher-order functions. For more related JS higher-order functions, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
>>: Example code for implementing a simple search engine with MySQL
Vue encapsulates the breadcrumb component for you...
This article mainly introduces the configuration ...
Table of contents Preface 1. Routing lazy loading...
Crontab is a command used to set up periodic exec...
Table of contents Setting up a basic HTTP request...
Table of contents Set a not null constraint when ...
Knowledge points about Memory storage engine The ...
Let's start with a description of the problem...
MySQL is a relational database management system....
Table of contents 1. Demand 2. Solution 3. The fi...
Recently, I received a requirement for function ex...
The Internet is an organism that is constantly ev...
Table of contents 1. CentOS7+MySQL8.0, yum source...
Vertical table Vertical table splitting means spl...
Table of contents 1. The role of index 2. Creatin...