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.
Like what XoRMiAS said, you're trying to match the typeof for the first argument and check if the first variable's typeof is equal to the second argument. So like in the description typeof 42 would equal "number". Then "number" === "number", which returns true. Where as typeof "42" would return "string", and string !== number, so it returns false.
This comment is hidden because it contains spoiler information about the solution