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

JavaScript数组forEach方法

程序员文章站 2022-05-29 09:02:51
...

JavaScript数组forEach方法

遍历数组一个特别好用的方法: 数组.forEach()

forEach( function( element,index,self ){ },this

参数 意义
element(必填) 数组的每一项
index 每一项所对应的的索引
self 当前项所属的数组
this(基本不用) this指向该参数
var arr = ['a', 'b', 'c'];

arr.forEach(function(item, index, arr) {
	console.log(item, index, arr) 
})
//输出
//a 0 ["a", "b", "c"]
//b 1 ["a", "b", "c"]
//c 2 ["a", "b", "c"]

可以通过设置来筛选数组里你需要的项

var arr = [1, 3, 4, 6, 9];

arr.forEach(function(item) {
	//筛选出数组里的偶数
	if (item % 2 === 0) {
		  console.log(item);
	}
})
//输出
//4
//6