ES5和ES6那些你必须知道的事儿(一)

ES5ES6那些你必须知道的事儿

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>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wsxdps.html