JS基础 - 数组 - 高级API - forEach方法
程序员文章站
2022-03-04 21:40:40
...
forEach()方法
对数组进行遍历循环,对数组中的每一项运行指定的函数
格式:
arr.forEach(function(value, index) {})
var arr = [1, 3, 5, 7, 9, 11];
arr.forEach(function(value, index) {
console.log(index + ":" + value)
})
下一篇: CSAPP学习日志6:locate