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.
I think using f-strings should be the best practice nowadays
If it was it isn't anymore. I got mine working fine.
This comment is hidden because it contains spoiler information about the solution
console.log
usesJSON.stringify
to output the contents of objects. JSON doesn't support functions, so it skips them.It something weird with the console.log(). Please try something like for(var i in deps) {console.log(deps[i].toString())}
Is something wrong with the system?
{}
is the output from:If there's any functions in the object it removes them all for some reason..
This comment is hidden because it contains spoiler information about the solution
Indeed; I tried to remove that two days ago when making wthit56's edits, but it appears the republish didn't complete. Now it is removed.
If giving integers in JavaScript 00 will be passed to the function as 0 and will result in 10 and not 20 as the example specifies unless I'm missing something...