// forEach()方法用于调用数组的每个元素,并将元素传递给回调函数(遍历数组的每个元素) // 语法:被遍历的数组.forEach(function(当前数组元素,当前元素索引号){ // // 函数体 // }) // forEach只遍历,不返回值!!! // 例: // const arr = [1, 2, 3, 4, 5] // arr.forEach(function (item, index) { // console.log(item)//依次打印数组的每一个元素 // console.log(index)//依次打印数组的每一个元素的索引 // })