Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Thank you! Here is some documentation about it for other people interested about it: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/label
It's a label for the loop. Basically it's a way of writing a
goto
target in Javascript and you should probably never ever use it.loop: for
followed bycontinue loop
means that whencontinue loop
is encountered, it immediately jumps to continue the loop labeledloop:
, breaking out of whatever nested loops necessary to do so.Can someone explain what the "loop:" is? I don't konw how to google that. :)