forEach 终止循环

 1 let arr= ['baidu', 'google', 'taobao'];
 2 try{
 3   arr.forEach(item=>{
 4     if(item == 'google'){
 5       throw new Error();
 6     }
 7   })  
 8 }catch(e){
 9    return;
10 }

 

posted @ 2020-06-02 19:05  PromiseOne  阅读(1618)  评论(0编辑  收藏  举报