forEach 如何提早終止 跳出運行spa
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()code
.blog