forEach()数组遍历

Posted vinson-blog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了forEach()数组遍历相关的知识,希望对你有一定的参考价值。

forEach() 方法对数组的每个元素执行一次给定的函数。只对数组有效

语法:

arr.forEach(callback(currentValue [, index [, array]])[, thisArg])

参数:

arr.forEach有三个参数,分别是:

1、arr:被遍历的数组

2、callback(currentValue,index,array){句柄}:回调函数,该回掉函数接受三个参数:

  A、currentValue:遍历到的当前元素

  B、index:为currentValue的索引

  C、array:被遍历的数组

3、thisArg:指代遍历中this的值

示例:

const arr = ["a", "b","c"]
      arr.forEach(function (currentValue, index, ar) {
        console.log(currentValue);//遍历打印a,b,c
        console.log(index);//遍历打印1,2,3
        console.log(ar);//遍历打印三次["a", "b", "c"]
        console.log(this)//String {"我就是this的值,我是个数组,我的每个字符都是数组中的一个值"};遍历打印三次
        console.log(typeof this)//Object
        console.log(this[0])//
        console.log(this instanceof String);//true
      }, "我就是this的值,我是个数组,我的每个字符都是数组中的一个值")

 

以上是关于forEach()数组遍历的主要内容,如果未能解决你的问题,请参考以下文章

PHP 数组遍历方法大全(foreach,list,each)

不使用foreach递归遍历多维数组

php-foreach遍历数组

php foreach只能遍历数组么

如何用foreach做数组个数的遍历

foreach语句遍历数组