Home > Web Front-end > JS Tutorial > body text

Detailed examples of new array methods in ES6

小云云
Release: 2018-05-15 10:47:09
Original
2326 people have browsed it

This article mainly introduces the new methods of array array in ES6. It summarizes and analyzes the functions and usage skills of various new methods of array array in ES6 in the form of examples. Friends in need can refer to it. I hope it can help everyone.

●find:

let arr=[1,2,234,'sdf',-2];
arr.find(function(x){
  return x<=2;
})//结果:1,返回第一个符合条件的x值
arr.find(function(x,i,arr){
  if(x<2){console.log(x,i,arr)}
})//结果:1 0 [1, 2, 234, "sdf", -2],-2 4 [1, 2, 234, "sdf", -2]
Copy after login

The parameter of find is the callback function. The callback function can receive 3 parameters, value x, so i, array arr, the callback function returns the default value x.

●findIndex:

let arr=[1,2,234,&#39;sdf&#39;,-2];
arr.findIndex(function(x){
  return x<=2;
})//结果:0,返回第一个符合条件的x值的索引
arr.findIndex(function(x,i,arr){
  if(x<2){console.log(x,i,arr)}
})//结果:1 0 [1, 2, 234, "sdf", -2],-2 4 [1, 2, 234, "sdf", -2]
Copy after login

findIndex is similar to find, but returns the index by default.

●includes:

let arr=[1,2,234,&#39;sdf&#39;,-2];
arr.includes(2);// 结果true,返回布尔值
arr.includes(20);// 结果:false,返回布尔值
arr.includes(2,3)//结果:false,返回布尔值
Copy after login

includes function is the same as string’s includes, receiving 2 parameters, the query item and the query starting position.

●keys:

let arr=[1,2,234,&#39;sdf&#39;,-2];
for(let a of arr.keys()){
  console.log(a)
}//结果:0,1,2,3,4 遍历了数组arr的索引
Copy after login

keys, traversal of array index

●values:

let arr=[1,2,234,&#39;sdf&#39;,-2];
for(let a of arr.values()){
  console.log(a)
}//结果:1,2,234,sdf,-2 遍历了数组arr的值
Copy after login

keys, traversal of array items

●entries:

let arr=[&#39;w&#39;,&#39;b&#39;];
for(let a of arr.entries()){
  console.log(a)
}//结果:[0,w],[1,b]
for(let [i,v] of arr.entries()){
  console.log(i,v)
}//结果:0 w,1 b
Copy after login

entries, Traverse array key-value pairs.

●fill:

let arr=[&#39;w&#39;,&#39;b&#39;];
arr.fill(&#39;i&#39;)//结果:[&#39;i&#39;,&#39;i&#39;],改变原数组
arr.fill(&#39;o&#39;,1)//结果:[&#39;i&#39;,&#39;o&#39;]改变原数组,第二个参数表示填充起始位置
new Array(3).fill(&#39;k&#39;).fill(&#39;r&#39;,1,2)//结果:[&#39;k&#39;,&#39;r&#39;,&#39;k&#39;],第三个数组表示填充的结束位置
Copy after login

The fill method changes the original array. When the third parameter is greater than the length of the array, it ends with the last digit. Location.

●Array.of():

Array.of(&#39;w&#39;,&#39;i&#39;,&#39;r&#39;)//["w", "i", "r"]返回数组
Array.of([&#39;w&#39;,&#39;o&#39;])//[[&#39;w&#39;,&#39;o&#39;]]返回嵌套数组
Array.of(undefined)//[undefined]依然返回数组
Array.of()//[]返回一个空数组
Copy after login

The Array.of() method always returns an array. The parameters are not classified into types, only Quantity, a quantity of 0 returns an empty array.

●copyWithin:

["w", "i", "r"].copyWithin(0)//此时数组不变
["w", "i", "r"].copyWithin(1)//["w", "w", "i"],数组从位置1开始被原数组覆盖,只有1之前的项0保持不变
["w", "i", "r","b"].copyWithin(1,2)//["w", "r", "b", "b"],索引2到最后的r,b两项分别替换到原数组1开始的各项,当数量不够,变终止
["w", "i", "r",&#39;b&#39;].copyWithin(1,2,3)//["w", "r", "r", "b"],强第1项的i替换为第2项的r
Copy after login

The copyWithin method receives three parameters, the beginning of the replaced data, the beginning of the replacement block, and the replacement block The end of (not included);copyWithin(s,m,n).

●Array.from():

Array.from({&#39;0&#39;:&#39;w&#39;,&#39;1&#39;:&#39;b&#39;,length:2})//["w", "b"],返回数组的长度取决于对象中的length,故此项必须有!
Array.from({&#39;0&#39;:&#39;w&#39;,&#39;1&#39;:&#39;b&#39;,length:4})//["w", "b", undefined, undefined],数组后2项没有属性去赋值,故undefined
Array.from({&#39;0&#39;:&#39;w&#39;,&#39;1&#39;:&#39;b&#39;,length:1})//["w"],length小于key的数目,按序添加数组
Copy after login
let ps=document.getElementsByTagName(&#39;p&#39;);
Array.from(ps)//返回p元素数组
Array.from(&#39;wbiokr&#39;)//["w", "b", "i", "o", "k", "r"]
Array.from([1,2,3],function(x){
    return x+1})//[2, 3, 4],第二个参数为回调函数
Copy after login

Array .from can convert array-like objects with length attributes into arrays, or it can convert traversable objects such as strings into arrays. It receives two parameters, the conversion object and the callback function.

Related recommendations:

JS method to implement Array and String conversion

php returns the sum of all values ​​in the array function array_sum( )

Summary of PHP commonly used array (Array) functions

The above is the detailed content of Detailed examples of new array methods in ES6. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!