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.
Nice! I didn't know about that. Powerful s#*t !
nice
Was wondering the same thing, thaks for asking. I added it a 'break' after every case for best practices but wasn't sure if I needed it.
Good to know. Thank you!
One case where you can remove break is when you are returning a value in a case. So, if you "return" in case, it is totally ok.
Is it required to have "break" in there, or is it okay to omit it since you have "return"?