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.
Strange
I agree, somewhere several exit points are even necessary (for example, recursion). But this specific example can be simplified a little, at least for readability.
What are the advantages of "var" over "let"?
Maybe it is better to use
var
instead oflet
?But this saves performance. At one point you check something, and you already know what to return so why calculate all that other stuff you don't need?
It is possible, yes, but it is a fairly common pattern in JS to do this.
This comment is hidden because it contains spoiler information about the solution
A bit hard to read the code. I would also recommend using a single exit point from the function, this helps a lot
This comment is hidden because it contains spoiler information about the solution
I should broke this to 2-3 rows, thanks
This comment is hidden because it contains spoiler information about the solution
My bad
Oh, I didn’t think about performance. Thanks for the advice
Come on, spoiler flags please!
This comment is hidden because it contains spoiler information about the solution
I think const is better
Loading more items...