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()
.
本文共 424 字,大约阅读时间需要 1 分钟。
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()
.
转载地址:http://jkfzo.baihongyu.com/