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()

 

.

 

posted @ 2018-05-25 16:08  James2019  阅读(5032)  评论(0编辑  收藏  举报