欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

常用的JavaScript数组方法

程序员文章站 2022-06-19 10:51:28
目录2、foreach()1、filter()语法:array.filter(function(currentvalue,index,arr), thisvalue) 参数说明: currentval...

1、filter()

语法:

array.filter(function(currentvalue,index,arr), thisvalue)

参数说明:
currentvalue:当前元素对象(必选)
index:当前元素的索引值(可选)
arr:当前元素属于的数组对象(可选)
thisvalue:对象作为该执行回调时使用,传递给函数,用作 "this" 的值。
如果省略了 thisvalue ,"this" 的值为 "undefined"(可选)

//过滤年龄大于10的元素 
var ages = [5, 32, 7, 10, 33, 12, 40]; 
var res = ages.filter(function (currentvalue) { 
  return currentvalue > 10; 
}) 
console.log(res.tostring()); 
//输出结果:32,33,12,40 
 
//箭头函数写法 
var res1 = ages.filter(item => item > 10) 
console.log(res.tostring()); 


输出结果

32,33,12,40

2、foreach()

语法:

array.foreach(function(currentvalue, index, arr), thisvalue)

参数用法同上

//循环输出每个参数 
var ages = [5, 32, 7, 10, 33, 12, 40]; 
ages.foreach(function (currentvalue, index) { 
  console.log("参数:" + currentvalue + "索引:" + index); 
}) 
 
 
//箭头函数写法 
ages.foreach((item, index) => { 
  console.log("参数:" + item + "索引:" + index); 
}) 


再看下面一段代码:

//把10修改成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); 


我们在代码中将10的值改成20后,加了一个return,但是运行结果显示还是打印了7次index的值,这就是foreach的一个缺点,只有循环结束才能停止。那如何解决呢?

3、some()

语法:

array.some(function(currentvalue,index,arr),thisvalue)
参数用法同上

//把10修改成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); 
 
//把10修改成20 箭头函数 
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); 


上面的代码中运行结果只会打印三次index的值,通过some就可以完美解决foreach()的不足,开发过程中就看大家的需要就行选择。

4、every()

语法:

array.every(function(currentvalue,index,arr), thisvalue)
参数用法同上

//判断每个元素的值是否都大于4 
var ages = [5, 32, 7, 10, 33, 12, 40]; 
 
 
var res = ages.some(function (currentvalue) { 
  return currentvalue > 4 
}) 
console.log(res); 
//输出:true 
 
//箭头函数 
var res = ages.some(item => item > 4) 
console.log(res); 

5、reduce()

语法:

array.reduce(function(total, currentvalue, currentindex, arr), initialvalue)

参数说明:

total:必需。初始值, 或者计算结束后的返回值。
currentvalue:   必需。当前元素
currentindex:可选。当前元素的索引
arr:可选。当前元素所属的数组对象。
initialvalue:可选。传递给函数的初始值

//计算所有元素的和 
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 
 
//计算大于4的元素的和 
var result = numbers.filter(item => item > 4).reduce((total, item) => total += item, 0) 
console.log(result); 
//20.2 

6、合并数组

用法:var arr = [...数组1,...数组2]
结果:将数组2的元素值拼接到数组1元素值后面

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

到此这篇关于常用的javascript数组方法的文章就介绍到这了,更多相关 数组 javascript内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

相关标签: JavaScript 数组