Detailed explanation of the new array methods in JavaScript es6

Detailed explanation of the new array methods in JavaScript es6

1. forEach()

Traverse the array without return. Even if there is return, no value will be returned and the original array will be affected.

callback parameters

value -- the value of the current index

index --index

arr -- original array

		let arr = ["a", "b", "c", 1, 2, 3];
        
        arr.forEach((value, index, arr) => {
            console.log(value, index, arr);
        })

Output:

insert image description here

2. arr.filter()

Filter an array and return an array that meets the requirements

callback parameters:

value -- the value of the current index

index --index

let arr = [1,2,3,4,5]
let arr1 = arr.filter( (value, index) => value%2 === 0)
console.log(arr1) // [2, 4]

3. arr.every()

According to the judgment condition, whether all elements of the array meet the requirements, if so, return true

callback parameters:

value -- the value of the current index

index --index

let arr = [1,2,3,4,5]
let arr1 = arr.every( (value, index) =>value<2)
console.log(arr1) // false
let arr2 = arr.every( (value, index) =>value<6)
console.log(arr2) // true

4. arr.map()

Map an array (traverse the array), and return a new array.

callback parameters:

value -- the value of the current index

index --index

array -- the original array

let arr = [1,2,3,4,5]
arr.map( (value,index,array)=>{
        value = value * 2
        console.log(`value:${value} index:${index} array:${array}`)
})   
console.log(arr)

result:

insert image description here

var arr1 = [1,2,3,4]; 
var res1 = arr1.map((item,index,arr)=>{ 
 item = item * 3; 
 return item; 
})
console.log(arr1); // [1,2,3,4]
console.log(res1); // [3,6,9,12]

5. arr.some()

According to the judgment condition, whether one of the elements of the array meets the condition, if one meets the condition, return true

callback parameters:

value -- the value of the current index

index --index

let arr = [1,2,3,4,5]
let arr1 = arr.some( (value, index) => value < 3)
console.log(arr1) // true
let arr2 = arr.some( (value, index) => value > 6)
console.log(arr2) // false

Summarize

This article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • Common array operation methods in JavaScript, including ES6 methods
  • es6 js method to match two array objects

<<:  CSS3 sets a mask for the background image and solves the problem of mask style inheritance

>>:  Teach you how to use Nginx service to build a subdomain environment to improve the loading performance of 2D maps

Recommend

Nexus uses API to operate

Nexus provides RestApi, but some APIs still need ...

js to create a carousel effect

I think the carousel is a relatively important po...

JavaScript to achieve calendar effect

This article shares the specific code for JavaScr...

Understanding JavaScript prototype chain

Table of contents 1. Understanding the Equality R...

Briefly describe the four transaction isolation levels of MySql

Isolation Level: Isolation is more complicated th...

Analysis of Alibaba Cloud CentOS7 server nginx configuration and FAQs

Preface: This article refers to jackyzm's blo...

Design of image preview in content webpage

<br />I have written two articles before, &q...

WeChat applet realizes the nine-square grid effect

This article shares the specific code for the WeC...

What should I do if I want to cancel an incorrect MySQL command?

I typed a wrong mysql command and want to cancel ...

Detailed tutorial on how to automatically install CentOS7.6 using PXE

1. Demand The base has 300 new servers, and needs...

Detailed explanation of Nginx passively checking the server's survival status

introduce Monitors the health of HTTP servers in ...

XHTML Getting Started Tutorial: Using the Frame Tag

<br />The frame structure allows several web...