1. IntroductionArray filter is a common method of front-end data processing. For the front-end, we need to process the data returned by the back-end before we can get the data we want and perform further operations. Sometimes the value returned to us by the backend can only be used as a reference. 2. Introduction to the MethodThe filter() method creates a new array. The data in the array is the data that meets the conditions after filtering out the specified data. Two major features of filter() 1.filter() does not detect empty arrays 2.filter() does not change the original array Usage of filter() method: array.filter(function(currentValue,index,arr), thisValue) //currentValue: the value of the current element //index: the subscript of the current element //arr: the original array 3. Usage Examples1. Get the elements in the array that meet the conditions const school = [ { occupation:"teacher", age:40 }, { occupation:"student", age:23 },{ occupation:"Programmer", age:1 } ] var newShool = school.filter(item => item.age > 20) console.log(newShool);//[ { occupation: 'Teacher', age: 40 }, { occupation: 'Student', age: 23 } ] SummarizeThis article ends here. I hope it can be helpful to you. I also hope that you can pay more attention to more content on 123WORDPRESS.COM! You may also be interested in:
|
<<: How to modify the root password of mysql in docker
>>: Various transformation effects of HTML web page switching
The overall architecture of MySQL is divided into...
This article introduces a framework made by Frame...
<br />The following are the problems I encou...
This article records the specific method of insta...
The textarea tag is an HTML tag that we often use....
Redis uses the apline (Alps) image of Redis versi...
For sorting, order by is a keyword we use very fr...
1. useState: Let functional components have state...
To understand load balancing, you must first unde...
Table of contents Install Configuration Common Mi...
This week has been as busy as a war. I feel like ...
Table of contents 1. Create a stored function 2. ...
Table of contents Thoughts triggered by an online...
Those who have played King of Glory should be fam...
Table of contents 1. MySQL compilation and instal...