数组的实例上都有一个叫做 forEach 的方法,这个方法定义在 Array.prototype 上,所以数组的所有实例都可以使用 forEach 这个方法. forEach 方法的语法结构如下: var ary = [1, 2, 3, 4, 5, 5, 6, 8, 9]; ary.forEach(function(index, item) { // 这个函数一共会执行 ary.length 次 // index 当前数组的索引 // item 当前索引对应的哪项 // thisArg 当函数执…