javascriptの4つの循環文が使用されます.

602 ワード

jsサイクルの使用:
while:
while(    ){     //                   
      ............
}
var count = 0;   //    0      true      1      5   false     
while(count<5){
   count++;
}
ド/whileは少なくとも一回実行します.
do{
      ............
}while(    )
for(常用):
for(   ,      ,    ){
     ............
}
 for(var i=0;i<5;i++){
    console.log(i);  // 0 4  
}
for in:
for(    in       ){
    ............
}
for(var p in o){
  console.log(o[p]);  //         p           
}
continue:今回のサイクルを終了し、次のサイクルを実行します.
break:サイクルを終了する