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.
Hey, the return in the third line is unnecessary because when the code stumbles upon a return what is does is that it returns the value and then stops execution. Which in this case is the function expression. So the third line never actually gets run. it just returns the function expression and says 'alright my job here is done'. hope this was helpfull in some way :-).
Nesting arrays decreases performence with large arrays but i can see how it is logical here.