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.
how do this code deal with the puncuations?
can someone please explain this to me
can someone please explain this to me
can someone please explain this to me
can someone please explain this to me
When i use return statment directly like this:
return typeof a == "number";(this works fine)
But when I put it inside if statment like this:
if(typeof(a)=='number'){
return a;
}
it does not return 0 .. please explain this