我们可以选择使用try...catch的方式进行跳出循环。
const arr = [0, 1, 2, 3, 4, 5]; try { arr.forEach((item) => { console.log('正常循环:', item); if (item === 2) { throw item; } }); } catch (e) { console.log('跳出循环:', e); }
这样就可以顺利跳出循环!!!!!!!!!!!!
标签:跳出,arr,log,中断,item,循环,forEach From: https://www.cnblogs.com/zaijin-yang/p/16771065.html