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.
nice!!
Not at all, using
let
will achieve the same result. However, I would say it is a good practice to useconst
(and immutables in general) as much as possible. It simply makes code easier to reason about. If later we discover we absolutely have to somehow change the value, we can always uselet
instead ofconst
.Is the const necessary