跳出for循环

跳出for循环有三种方式:

1:continue;跳出当次循环,可继续进行下一个循环;

function ceshi(){
  for(var i = 0 ; i < 6 ; i++){
    if(i == 3){
      continue;
    }
    console.log('========',i);
  }
}

ceshi();

效果图:

跳出for循环_第1张图片

2:break;跳出当前循环,即不在进行此循环;如果是多个for循环嵌套,则不影响外层循环;

function ceshi(){
  for(var i = 0 ; i < 2 ; i++){
    for(var j = 0; j < 3 ; j++){
      if(j == 2){
        break;
      }
      console.log('------ j -------',j);
    }
    console.log('====== i ======',i);
  }
}

ceshi();

效果图:

跳出for循环_第2张图片

 

3:return;结束函数调用;

function ceshi(){
  for(var i = 0 ; i < 2 ; i++){
    for(var j = 0; j < 3 ; j++){
      if(j == 2){
        return;
      }
      console.log('------ j -------',j);
    }
    console.log('====== i ======',i);
  }
}

ceshi();

效果图:

 

 

 

 

 

 

 

 

你可能感兴趣的:(前端,for循环,跳出for循环,break,continue)