标签:用法 href 实例 pre multi strong javascrip += tty
列出数组的每个元素:
输出结果:
forEach() 方法用于调用数组的每个元素,并将元素传递给回调函数。
注意: forEach() 对于空数组是不会执行回调函数的。
表格中的数字表示支持该方法的第一个浏览器版本号。
方法 | |||||
---|---|---|---|---|---|
forEach() | Yes | 9.0 | 1.5 | Yes | Yes |
array.forEach(function(currentValue, index, arr), thisValue)
参数 | 描述 | ||||||||
---|---|---|---|---|---|---|---|---|---|
function(currentValue, index, arr) | 必需。 数组中每个元素需要调用的函数。 函数参数:
|
||||||||
thisValue | 可选。传递给函数的值一般用 "this" 值。 如果这个参数为空, "undefined" 会传递给 "this" 值 |
返回值: | undefined |
---|---|
JavaScript 版本: | ECMAScript 3 |
计算数组所有元素相加的总和:
将数组中的所有值乘以特定数字:
标签:用法 href 实例 pre multi strong javascrip += tty
原文地址:https://www.cnblogs.com/sexintercourse/p/11802464.html