Summary of the Differences between find() and filter() Methods in JavaScript

Summary of the Differences between find() and filter() Methods in JavaScript

Preface

JavaScript has many array methods in ES6, each with unique uses and benefits.

While developing applications, you mostly use array methods to get a specific list of values ​​and get single or multiple matching items.

Before listing the differences between these two methods, let’s understand these methods one by one.

JavaScript find() Method

The ES6 find() method returns the value of the first element that passes a test function. If no value satisfies the test function, undefined is returned.

grammar

Arrow functions used in the following syntax.

find((element) => { /* ... */ } )
find((element, index) => { /* ... */ } )
find((element, index, array) => { /* ... */ } )

We have a list of user objects with properties name age and id as shown below:

let users = [{
    id:1,
    name: 'John',
    age: 22
}, {
    id:2,
    name: 'Tom',
    age: 22
}, {
    id:3,
    name: 'Balaji',
    age: 24
}];

The following code uses the find() method to find the first user whose age is greater than 23.

console.log(users.find(user => user.age > 23));
//console
//{ id: 3, name: 'Balaji', age: 24}

Now we want to find the first user whose age is 22

console.log(users.find(user => user.age === 22));
//console
//{ id: 1, name: 'John', age: 22}

Assuming no match is found means it returns undefined

console.log(users.find(user => user.age === 25));
//console
//undefined

JavaScript filter() Method

The filter() method creates a new array containing all elements that pass a test function. If no elements satisfy the test function, an empty array is returned.

grammar

filter((element) => { /* ... */ } )
filter((element, index) => { /* ... */ } )
filter((element, index, array) => { /* ... */ } )

We will use the same users array and test function as the filter example.

The following code uses the filter() method to find the first user whose age is greater than 23.

console.log(users.filter(user => user.age > 23));
//console
Now we want to filter users whose age is 22 years old //[{ id: 3, name: 'Balaji', age:24}]

Now we want to filter users who are 22 years old

console.log(users.filter(user => user.age === 22));
//console
//[{ id: 1, name: 'John', age:22},{ id: 2, name: 'Tom', age:22}]

Assuming no matches are found means it returns an empty array

console.log(users.filter(user => user.age === 25));
//console
//[]

Differences and similarities between find() and filter()

Common Points

Higher-Order Functions: Both of these functions are higher-order functions.

the difference

1. Pass a test function

find() returns the first element.

filter() returns a new array containing all elements that pass the test function.

2. If no value satisfies the test function

find() returns undefined;

filter() returns an empty array;

Directly on the code

let arr = [
  {
    name: 'Rick',
    age: 60
  },

  {
    name: 'Rick',
    age: 70
  },

  {
    name: 'Morty',
    age: 14
  }

]

let findResult = arr.find(i => i.name === 'Rick')
let filterResult = arr.filter(i => i.name === 'Rick')

console.log(arr); 
/* Output result[
    {
      name: "Rick",
      age: 60
    },

    {
      name: "Rick",
      age: 70
    },

    {
      name: "Morty",
      age: 14
    }
  ]

*/

console.log(findResult); // {name: "Rick", age: 60}
console.log(filterResult); // [{name: "Rick", age: 60}, {name: "Rick", age: 70}]

According to the output of the above code, we can find that neither find nor filter changes the original array.

Summarize

This concludes this article about the differences between find() and filter() methods in JavaScript. For more information about the differences between js find() and filter() methods, please search 123WORDPRESS.COM’s previous articles or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • JavaScript without loops (map, reduce, filter, and find)
  • Detailed explanation of the differences between js array find, some, filter, and reduce

<<:  CSS to achieve fast and cool shaking animation effect

>>:  Detailed steps for installing MinIO on Docker

Recommend

Teach you how to insert 1 million records into MySQL in 6 seconds

1. Idea It only took 6 seconds to insert 1,000,00...

Detailed explanation of nginx optimization in high concurrency scenarios

In daily operation and maintenance work, nginx se...

The linkage method between menu and tab of vue+iview

Vue+iview menu and tab linkage I am currently dev...

How to copy MySQL table

Table of contents 1.mysqldump Execution process: ...

UCenter Home site adds statistics code

UCenter Home is an SNS website building system rel...

harborRestart operation after modifying the configuration file

I won't say much nonsense, let's just loo...

Linux command line operation Baidu cloud upload and download files

Table of contents 0. Background 1. Installation 2...

Summary of MySQL injection bypass filtering techniques

First, let’s look at the GIF operation: Case 1: S...

VMware installation of Ubuntu 20.04 operating system tutorial diagram

Memo: Just experience it. Record: NO.209 This exa...

How to adjust the log level of nginx in Docker

Table of contents Intro Nginx Dockerfile New conf...

MySQL transaction analysis

Transaction A transaction is a basic unit of busi...

Install and configure MySQL 5.7 under CentOS 7

This article tests the environment: CentOS 7 64-b...

Detailed explanation of how to use Docker-Compose commands

You can manage and deploy Docker containers in a ...