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.
Ranks can't be changed.
That isn't a kata issue, though it could be a CW issue at the time.
This comment is hidden because it contains spoiler information about the solution
Not an issue, your code's problem is a question.
JS functions can only accept a certain number of arguments before getting into problems ;-)
[ true, {} ]
has 2 elements, and you have to return the truthy values in that array, so you should return the same array giventrue
and{}
are both truthy.No, the corresponding values are truthy in that case.
if the number of the array's values is even return truthy values...
Number of values =
2
Truthy values:
true
,{}
Expected:
[true, {}]
What's wrong with that?