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

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)
})