遍历数组要怎么做,可能你首先想到的会是for循环,当然for循环在JavaScript 刚萌生的时候就出现了,想到它也是理所当然的 var a=[[1,2],[3,4],5] for(var i=0;i<a.length;i++){ console.log(a[i]); } for循环略显臃肿, 在ES5中有了forEach来遍历数组,似乎变得简洁了许多 a.forEach(function (value) { console.log(value); }) but,forEach不能使用 bre…