JavaScript数组forEach方法
JavaScript数组forEach方法遍历数组一个特别好用的方法: 数组.forEach()forEach( function( element,index,self ){ },this)参数意义element(必填)数组的每一项index每一项所对应的的索引self当前项所属的数组this(基本不用)this指向该参数var arr = ['a', 'b', 'c'];arr.forEach(function(item, index, ar