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.
This comment is hidden because it contains spoiler information about the solution
Exactly what @damjan said. It just converts
true
to1
andfalse
to0
. Today I would probably use the+
operator:+/.../.test(...)
just to save another character :-)Check out this StackOverflow thread. Basically,
~
is the bitwiseNOT
operator, and applying it twice converts anything to an integer. It's used in this answer to convert the output ofRegExp.test
from a boolean to a number. Example:~~true === 1
. You will more often see it used to truncate anything after the decimal point, as a sort of floor function.