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.
Knowing what tools are available is extremely valuable when building real world applications.
And not everyone knows about this library, so I believe this is valuable for people to see.
I like this solution, functions really should "do one thing", Uncle Bob would be proud.
Something like...
if (isTruthy) { return true; } else { return false; }
...can always be rewritten like...
return isTruthy;
Something like...
if (isTruthy) { return true; } else { return false; }
...can always be rewritten like...
return isTruthy;