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 object doesn't even contain undefined items. It only has
length
. There's a difference between existing properties that happen to beundefined
and actual missing, or empty, ones. Cf.[undefined,0]
vs.[,0]
( yes, that's valid JS ). But if you ask for a non-existent property, JS will not throw aReferenceError
, but give youundefined
instead, unlike when you ask for a non-existent variable.