js中Array对象提供了一种遍历数组的方法,forEach()。
个人觉得还是很好用的,下面给大家做个详细的介绍。
forEach() 方法用于调用数组的每个元素,并将元素传递给回调函数。
语法格式为:
array.forEach(function(currentValue, index, arr), thisValue)
currentValue: 表示当前元素,个人习惯用item来表示。
index: 当前元素索引号。
arr: 当前元素所属的数组对象。
举例说明:
var arr = [123, 232, 31, 313, 3, 13]; // 乱打的
arr.forEach(function (item, index,arr) {
console.log(item);
console.log(index);
console.log(arr);
})
通过控制台打印的数据,可以很直观的理解此方法。
喜欢的朋友请点个赞,谢谢!