So is this actually naming the loop to nextLoop? So when it says continue nextLoop, does it go back to the top right away?
nextLoop
continue nextLoop
var t
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.
go to