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.
Babel (which is used to allow the usage of ES2015 stuff) implements the ES2015 rule that assigning a function to a variable defines the function's name as the variable name. You can work around this by assigning the function to a differently named variable, and then assign that variable to a variable called helloWorld.
I'd guess this is because ES2015 makes a function defined
var helloWorld = function()
also have the name "helloWorld". And on codeewars babel makes this happen.