arr1.forEach(function(){
arr2.forEach(function(){
if(some condition true){
return; // this only skips the arr2 functionality
}
// rest of the code
});
});
return仅停止功能。我要它停止整个arr2迭代并继续进行arr1迭代吗?
更新: (PS:已经知道我可以获取一个变量并将其设为true,因此循环的其余部分将进行迭代,但不会执行任何操作。)
中断并继续给出此错误 无法确定“中断/继续”的目标