forEach 如何终止循环

const arr = [1, 2, 3, 4, 5];

1、使用 return 方式(不能终止)

跳过值为3时,再继续循环

/* 1.使用 return */
arr.forEach(item => {
  if (item === 3) {
    return; // 跳过itme为3
  }
  console.log('val=' + item); // 1,2,4,5
});

2、使用 break 方式(报错)

报错 Uncaught SyntaxError: Illegal break statement

/* 2.使用 break */
arr.forEach(item => {
  if (item === 3) {
    break; // 报错 Uncaught SyntaxError: Illegal break statement
  }
  console.log('val=' + item);
});

3、使用 continue 方式(报错)

报错 Uncaught SyntaxError: Illegal continue statement: no surrounding iteration statement

/* 3.使用 continue */
arr.forEach(item => {
  if (item === 3) {
    continue; // 报错 Uncaught SyntaxError: Illegal continue statement: no surrounding iteration statement
  }
  console.log('val=' + item);
});

4、使用 try catch 方式(正确答案)

抛出一个异常来终止循环

/* 4.使用 try catch */
try {
  arr.forEach(item => {
    if (item === 3) {
      throw ('终止循环'); // 抛出一个异常
    }
    console.log('val=' + item); // 1,2
  });
} catch (e) {
  console.log('catch内容:' + e); // catch内容:终止循环
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值