Question about loops and continue

后端 未结 4 2079
轮回少年
轮回少年 2021-01-06 10:12

So is this actually naming the loop to nextLoop? So when it says continue nextLoop, does it go back to the top right away?

   var t         


        
4条回答
  •  自闭症患者
    2021-01-06 10:58

    It does. But you should avoid it. It is a bad practice, similar to go to. Makes the code hard to read, understand and spaghetti like.

提交回复
热议问题