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.
python new test framework is required. updated in this fork
(JS) Description doesn't mention null can be given as an argument, and test expects null in that case.
This is not how CapsLock works. It's specified, but it should not be called CapsLock or it should behave like CapsLock.
Also, the thingy with
null
is not correct for JavaScript. We are promised aString
, we should be given aString
. If you want to allow for the possibility of calling the function withfatFingers()
, that would be ( more or less ) equivalent to passingundefined
, NOTnull
. I'd also argue that the correct return value would then be""
, notundefined
again ornull
. I have never understood the practice of passingnull
to functions, but in Java it seems to make sense. In JavaScript, it doesn't.