forEach 如何提前终止 跳出运行
forEach 如何提前终止 跳出运行
try{ arr.forEach(function(item,index){ if (...) { foreach.break=new Error("StopIteration"); } }); }catch(e){ if(e.message==="foreach is not defined") { return; }else throw e; }
《JavaScript权威指南(6版)》7.9.1 forEach()
.