ES5新增的东西
一、数组方法
1、forEach
用途:遍历,循环
对于空数组不会执行回调函数
//用法 array.forEach( function(currentValue, index, arr), thisValue ) //currentValue 必需。当前元素 //index 可选。当前元素的索引值。 //arr 可选。当前元素所属的数组对象。 //thisValue 可选。传递给函数的值一般用 "this" 值。如果这个参数为空, "undefined" 会传递给 "this" 值 <button>点我</button> <p>数组元素总和:<span></span></p> <script> var sum = 0; var numbers = [65, 44, 12, 4]; function myFunction(item) { sum += item; demo.innerHTML = sum; } </script>