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.
The idea is that booleans only have two values. true and false. If the entered boolean is true it outputs "Yes" if the entere boolean is false it outpits "no" There isnt even any calculation required here. It just directly returns Yes or No depending on whats entered.
I don't think it matters. the logic behind a ternary operator is that if whatever before the "?" is true, then return yes:no, so using (bool === true) ? or bool ? is the same logic.
I did not know about it. thanks :).
This comment is hidden because it contains spoiler information about the solution