- 数组的
forEach
办法,也能够用来遍历数组
定义和用法
forEach() 办法用于调用数组的每个元素,并将元素传递给回调函数。
留神: forEach() 对于空数组是不会执行回调函数的。
语法
array.forEach(function(currentValue, index, arr), thisValue)
forEach
办法,也能够用来遍历数组forEach() 办法用于调用数组的每个元素,并将元素传递给回调函数。
留神: forEach() 对于空数组是不会执行回调函数的。
array.forEach(function(currentValue, index, arr), thisValue)