JS进阶-forEach

forEach()方法用于调用数组的每个元素,并将元素传递给回调函数。

主要使用场景:遍历数组的每个元素

语法:

被遍历的数组.forEach(function(当前数组元素,当前元素索引号){
    //函数体
})

例如:

const arr = ['red', 'green', 'pink']
    arr.forEach(function (item, index) {
      console.log(item)
      console.log(index)
})

注意:

1.forEach主要是遍历数组(加强版的for循环),只遍历不返回值。

2.参数当前数组元素是必须要写的,索引号可选。

3.适合于遍历数组对象。

你可能感兴趣的:(JS,javascript,前端,开发语言)