JavaScript数组forEach循环 今天写JavaScript代码把forEach循环数组忘记写法了,在此记录一下以防止未来忘记. let a = [1, 2, 3]; a.forEach(function(element) { console.log(element); }); 有趣的是,forEach是a的一个函数. 语法 array.forEach(callback(currentValue, index, array){ //do something }, this) array