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.
Try lookup how
for in
works.Your solution returns a blank array, it should have returned an array with "a" and "b".
I have also got the same problem with this approach. Use setFullYear() instead of new Date().
This comment is hidden because it contains spoiler information about the solution
Hi Richard, you are correct.
I've changed a description. Thanks for spotting it.
.toFixed
returns astring
, then you need to convert your result back to anumber
before returning it.It seems that Number.parseInt() gives the error on the CodeWars website. If you simply use parseInt, it will work.