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.
This line has been added some time ago -->
Note: The output array should be sorted alphabetically by key name.
Please adjust the description for people that use JS. The tests all come back as failed if they don't use sort.
You got an error from putting the pound sign under a string format?
Only something within quotation marks are considered strings; numbers are just values if you don't surround them with quotations. For example 12345 is considered a number, "12345" is considered a string. You can convert numbers into strings by using .toString() method. Therefore 12345.toString() === "12345"