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.
prototype allows you to attach a property or a function that can be accessible to all instantiations of the particular class, for example you can add your own properties so that when you do Object.prototype.newFunction = function(){some code here}. Now.. any new objects that you instantiate would be able to access your new function so that var x = new Object then x.newFunction(), would now work.