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.
ops[operation] || function() { return null; }
You need this function for other operation values beside "+-*/" and it would return null.
For example, if you get "m" or "w" as an operation, the compiler will give errors since m or w are not a method so OR function is needed to return null.
ops[operation] || function() { return null; }
You need this function for other operation values beside "+-*/" and it would return null.