Commonly used JavaScript array methods

Commonly used JavaScript array methods

1. filter()

grammar:

array.filter(function(currentValue,index,arr), thisValue)

Parameter Description:
currentValue : current element object (required)
index : the index value of the current element (optional)
arr : the array object to which the current element belongs (optional)
thisValue : The object passed to the function to be used as the "this" value when the callback is executed.
If thisValue is omitted, the value of " this " is " undefined " (optional)

//Filter elements whose age is greater than 10 var ages = [5, 32, 7, 10, 33, 12, 40]; 
var res = ages.filter(function (currentValue) { 
  return currentValue > 10; 
}) 
console.log(res.toString()); 
// Output: 32,33,12,40 
 
//Arrow function writing var res1 = ages.filter(item => item > 10) 
console.log(res.toString()); 


Output :

32,33,12,40

2. forEach()

grammar:

array.forEach(function(currentValue, index, arr), thisValue)

Parameter usage is the same as above

//Loop and output each parameter var ages = [5, 32, 7, 10, 33, 12, 40]; 
ages.forEach(function (currentValue, index) { 
  console.log("Parameter:" + currentValue + "Index:" + index); 
}) 
 
 
//Arrow function writing ages.forEach((item, index) => { 
  console.log("parameter:" + item + "index:" + index); 
}) 


Let’s look at the following code:

//Change 10 to 20 
var ages = [5, 32, 7, 10, 33, 12, 40]; 
ages.forEach(function (currentValue, index) { 
  if (currentValue === 10) { 
    ages[index] = 20 
    return 
  } 
  console.log(index); 
}) 
 
console.log(ages); 


After we changed the value of 10 to 20 in the code, we added a return , but the running results still showed that the value of index was printed 7 times. This is a shortcoming of forEach, which can only stop when the loop ends. So how to solve it?

3. some()

grammar:

array.some(function(currentValue,index,arr),thisValue)
Parameter usage is the same as above

//Change 10 to 20 
var ages = [5, 32, 7, 10, 33, 12, 40]; 
ages.some(function (currentValue, index) { 
  if (currentValue === 10) { 
    ages[index] = 20 
    return true 
  } 
  console.log(index); 
}) 
 
console.log(ages); 
 
//Change 10 to 20 arrow function var ages = [5, 32, 7, 10, 33, 12, 40]; 
ages.some((item, index) => { 
  if (item === 10) { 
    ages[index] = 20 
    return true 
  } 
  console.log(index); 
}) 
 
console.log(ages); 


The running result of the above code will only print the value of index three times. The shortcomings of forEach() can be perfectly solved through some . During the development process, you can choose according to your needs.

4. every()

grammar:

array.every(function(currentValue,index,arr), thisValue)
Parameter usage is the same as above

// Check if the value of each element is greater than 4 
var ages = [5, 32, 7, 10, 33, 12, 40]; 
 
 
var res = ages.some(function (currentValue) { 
  return currentValue > 4 
}) 
console.log(res); 
// Output: true 
 
//arrow function var res = ages.some(item => item > 4) 
console.log(res); 

5. reduce()

grammar:

array.reduce(function(total, currentValue, currentIndex, arr), initialValue)

Parameter Description:

total : required. The initial value, or the return value after the calculation is completed.
currentValue : Required. Current element
currentIndex : Optional. The index of the current element
arr : optional. The array object to which the current element belongs.
initialValue : Optional. The initial value passed to the function

//Calculate the sum of all elements var numbers = [15.5, 2.3, 1.1, 4.7]; 
var res = numbers.reduce(function (total, currentValue) { 
  return total += currentValue 
}, 0) 
 
console.log(res); 
//23.6 
 
//Calculate the sum of elements greater than 4 var result = numbers.filter(item => item > 4).reduce((total, item) => total += item, 0) 
console.log(result); 
//20.2 

6. Merge arrays

Usage : var arr = [...array1,...array2]
Result : The element value of array 2 is concatenated to the element value of array 1

var arr = [1, 2, 3] 
var arr2 = [4, 5, 6] 
 
var res = [...arr, ...arr2] 
console.log(res); 
// Output: [1, 2, 3, 4, 5, 6] 
 
var res = [...arr2, ...arr] 
console.log(res); 
// Output: [4, 5, 6, 1, 2, 3] 

This is the end of this article about commonly used JavaScript array methods. For more relevant array JavaScript content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of how to create an array in JavaScript
  • Detailed explanation of the new array methods in JavaScript es6
  • Detailed explanation of JS array methods
  • Detailed explanation of common methods of JavaScript arrays
  • Summary of several common methods of JavaScript arrays
  • Common array operations in JavaScript
  • Detailed Example of JavaScript Array Methods

<<:  How to limit the number of concurrent connection requests in nginx

>>:  Mysql sorting and paging (order by & limit) and existing pitfalls

Recommend

How to configure the Runner container in Docker

1. Create a runner container mk@mk-pc:~/Desktop$ ...

Circular progress bar implemented with CSS

Achieve results Implementation Code html <div ...

Implementing a simple student information management system based on VUE

Table of contents 1. Main functions 2. Implementa...

Solution to MySQL unable to read table error (MySQL 1018 error)

1. Error reproduction I can access the MySQL data...

Two ways to use react in React html

Basic Use <!DOCTYPE html> <html lang=&qu...

Detailed steps to configure MySQL remote connection under Alibaba Cloud

Preface As we all know, by default, the MySQL ins...

A brief discussion on whether MySQL can have a function similar to Oracle's nvl

Use ifnull instead of isnull isnull is used to de...

Summary of some tips for bypassing nodejs code execution

Table of contents 1. child_process 2. Command exe...

Summary of 7 reasons why Docker is not suitable for deploying databases

Docker has been very popular in the past two year...

VMware ESXI server virtualization cluster

Table of contents summary Environment and tool pr...

Detailed explanation of Nginx forwarding socket port configuration

Common scenarios for Nginx forwarding socket port...

W3C Tutorial (5): W3C XML Activities

XML is designed to describe, store, transmit and ...

In-depth understanding of JavaScript callback functions

Table of contents Preface Quick Review: JavaScrip...

MySQL 8.0.20 installation tutorial and detailed tutorial on installation issues

Original address: https://blog.csdn.net/m0_465798...