Use of filter() array filter in JS

Use of filter() array filter in JS

1. Introduction

Array 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 Method

The 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 Examples

1. 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 } ]

Summarize

This 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:
  • Detailed explanation of the differences between js array find, some, filter, and reduce
  • jsp filter filter function and simple usage examples
  • How to filter data using orderBy and filter in angularJs
  • How to implement the filter encoding format in JSP development
  • Angularjs filter--filter and ng-repeat work together to create a miraculous effect

<<:  How to modify the root password of mysql in docker

>>:  Various transformation effects of HTML web page switching

Recommend

Introduction to MySQL overall architecture

The overall architecture of MySQL is divided into...

HTML Frameset Example Code

This article introduces a framework made by Frame...

Problems and experiences encountered in web development

<br />The following are the problems I encou...

VMware Workstation 14 Pro installation Ubuntu 16.04 tutorial

This article records the specific method of insta...

The use of textarea in html and common problems and case analysis

The textarea tag is an HTML tag that we often use....

Docker starts Redis and sets the password

Redis uses the apline (Alps) image of Redis versi...

MySQL briefly understands how "order by" works

For sorting, order by is a keyword we use very fr...

React Hook usage examples (6 common hooks)

1. useState: Let functional components have state...

Summary of Nginx load balancing methods

To understand load balancing, you must first unde...

Detailed explanation of Vue-Jest automated testing basic configuration

Table of contents Install Configuration Common Mi...

MySQL stored functions detailed introduction

Table of contents 1. Create a stored function 2. ...

Introduction to the use of MySQL source command

Table of contents Thoughts triggered by an online...

How to implement the King of Glory matching personnel loading page with CSS3

Those who have played King of Glory should be fam...