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.
speeling error:
* its
python translation
If you don't want to explain
Object.assign
(fair enough), you should add a link to MDN or something so people can look it up easily.I pass the Simple Test. But I am stack on other tessts. And test error also describe something like the following.
So, I try random like the following
I got what I expected? Can you describe a little more on description?
Nowhere does it mention the method should support multiple arguments.
And the random tests have
actual
andexpected
switched, so if you only support 1 argument, it'll look like you have too many properties instead of too few.Also, the tests don't check if the new method is enumerable or not. It shouldn't be - you DON'T want
for ( let i in Array.from("abc") ) console.log(i)
to print0,1,2,assign
.