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.
the alphabet is abcdefghijklmnopqrstuvwxyz
you might have mistaken the order.
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.
This is not right. You are not testing for the correct moneth? It could be 24th Feb and you function would return true;
I have no idea how this prototype works....could any one send me something explaining it? thanks!