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.
feelsBadMan
Well
replace
would reduce the number of characters before thesplit
, resulting in a shorter array forfilter
to spin through. Since each array element is a string, then fewerString
objects are created.I know it's an old question but I would love to know the answer to this one!
No.
Can you explain why it is O(n) and O(2n) if function be outside or inside please? Tnx
certainly not a best practice. clever, yes
How does
filter
compare toreplace
performance-wise?This is clever, but I don't know why anyone would vote for a nested ternary as a best practice
Wouldn't it be better to define the sort callback outside? That way you get O(n) instead of O(2n) right?
Mostly just impressed you took the time to write all that out