Break 和 Continue 语句

break 语句用于跳出循环。
continue 用于跳过循环中的一个迭代。
下面分别介绍一下break语句和continue的用法:
Break
break 语句可用于跳出循环。
break 语句跳出循环后,会继续执行该循环之后的代码。
js代码

for (i=0;i<10;i++)
  {
    var x;
  if (i==3)
     break;
    console.log( x="The number is" + i);
  }

 
代码输出结果是:
The number is 0
The number is 1
The number is 2
Continue
continue 语句中断循环中的迭代,如果出现了指定的条件,然后继续循环中的下一个迭代。
js代码

for (i=0;i<=10;i++)
{ 
  var x;
if (i==3) continue;
console.log( x="The number is "+i );
  }

 
代码输出结果
The number is 0
The number is 1
The number is 2
The number is 4
The number is 5
The number is 6
The number is 7
The number is 8
The number is 9
通过这两个例子的对比更好的说明了Break 和 Continue 语句的不同用法。

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值