关于javascript:难点

41次阅读

共计 149 个字符,预计需要花费 1 分钟才能阅读完成。

  1. 数组的 forEach 办法,也能够用来遍历数组

定义和用法

forEach() 办法用于调用数组的每个元素,并将元素传递给回调函数。

留神: forEach() 对于空数组是不会执行回调函数的。

语法

array.forEach(function(currentValue, index, arr), thisValue)

正文完
 0