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.
I'll keep that in mind
Thanks a lot! ^^
(aI+'' == bI+'')
is aBoolean
. You could just return thatBoolean
.And you're using
==
and coercing lots of values to different datatypes. Actually, coercion isn't bad, implicit coercion is bad. So always make your coercions ( casts ) explicit, and always use===
. Implicit coercion is just asking for bugs.Could you explain that more?
Im just learning Thanks!
Conceptually,
Clever
.However, unfortunate amounts of coercion, and a
? :
construct that implies a lack of understanding ofBoolean
s.