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.
Print the arguments, and:
It does say two or more there. You don't need to discover anything if you read that.
Your usage of.Object.defineProperty()
makes no sense, I suggest you rethink that part of your code.Sorry for my previous message, I should have tested your code. Your code does produce very sensible results, the problem is that the properties defined by
Object.defineProperty()
are notenumerable
by default, andassert.deepEquals()
appears to consider that enumerability in its comparison. You need to find a way to make those propertiesenumerable
.The
ISSUE
tag if for issues with the kata, not issues with your solution.