Which loop is faster, while or for?

后端 未结 16 2283
我寻月下人不归
我寻月下人不归 2020-11-27 07:07

You can get the same output with for and while loops:

While:

$i = 0;
while ($i <= 10){
  print $i.\"\\n\";
  $i++;
};
         


        
16条回答
  •  自闭症患者
    2020-11-27 07:20

    I find the fastest loop is a reverse while loop, e.g:

    var i = myArray.length;
    while(i--){
      // Do something
    }
    

提交回复
热议问题