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.
Array
s areObject
s ( almost everything is an object ).I suppose by
you mean it cannot be an array.
I would make this explicit.
In JavaScript, arrays function more or less as objects with numerical properties (
[ "zero", "one" ] ~ { 0: "zero", 1: "one" }
), so it would not even make it harder for the user to allow arrays as well. But you don't have to.null
is anObject
. Expected results should be specified, and it should be tested with.Also, where are the random tests?