Example: function add(x, y, f) { return f(x) + f(y); } //Verify with code: add(-5, 6, Math.abs); // 11 1. Common higher-order functions 1.1、filter Example 1: Take out the data less than 100 in the array and put it into a new array let grad = [ 102, 188, 55, 66, 200, 800 ] let arr2 = grad.filter( function(item){ return item <= 100 }) console.log("arr2",arr2) // 55, 66 In the above example, the parameter passed to 1.2, mapMap means mapping. The original array is mapped into a new array, and the return value is a new array, without changing the original array. The length of the new array will not change with the original array. Example 2: Magnify each element of the data by 2 times. let arr2 = [ 55, 66 ] let arr3 = arr2.map( item => { return item*2 }) //Return result [110, 132] In the above example, the parameter received by 1.3、reduce Example 3: Sum the results returned by the previous example. let sum = arr3.reduce((tmp,item)=>{ return tmp+item }) //Return result 242 Now here comes the point. If we want to combine the above three examples together, how simple can we write it in the end? Responsible for writing: // Complex writing let grad = [102,188,55,66,200,800] let arr2 = grad.filter(function(item){ return item <= 100 }) let arr3 = arr2.map(item=>{ return item*2 }) let sum = arr3.reduce((tmp,item)=>{ return tmp+item }) Simple writing: //Simple writing let sum2 = grad .filter( item => {return item <= 100}) .map(item=>{return item*2}) .reduce((tmp,item)=>{return tmp+item}) This is the end of this article about the details of common higher-order functions You may also be interested in:
|
<<: Analysis of the process of building a LAN server based on http.server
>>: Bugs encountered when using mybatis-generator with mysql8.0.3 in IDEA
Regarding some MySQL specifications, some compani...
Preface: rm under Linux system is irreversible. T...
Why doesn't your height:100% work? This knowl...
Background Recently, when writing SQL statements,...
<br />Adding pictures reasonably can make a ...
This article mainly introduces the implementation...
This article records the installation graphic tut...
1. Download from the official website and unzip h...
It is common to view code effects in different br...
Standardized design solutions - markup languages ...
1. Single machine environment construction# 1.1 D...
1. MYSQL installation directory Copy the code as ...
<br />Years of professional art design educa...
Table of contents Install Pagoda Configure Python...
Table of contents 1. MySQL 8.0.18 installation 2....