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.
While this is true, the input for this particular kata is already standardized to the "June 15, 2014" form. This particular form is pretty much interpreted exactly the same in all implementations.
This is a "Clever" solution that fits the general case.
This is also how I solved it. Sadly, I didn't realize that Date.parse() was frowned upon.
Awesome solution. But it seems that Mozilla Foundation does not recommend the use of Data.parse() anymore, as seen here https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/parse
"It is not recommended to use Date.parse as until ES5, parsing of strings was entirely implementation dependent. There are still many differences in how different hosts parse date strings, therefore date strings should be manually parsed (a library can help if many different formats are to be accommodated)."