Over the years, Javascript has continued to gain lots of attention as its increasingly vast capabilities continue to expand. It has grown from b...
For further actions, you may consider blocking this person and/or reporting abuse
A really good article for explaining algorithms through JavaScript for beginners. Good job and keep it up.
I thought though to try and add one more way of doing it, and that's recursively.
So here is my method for recursively finding the amount of vowels (feel free to use it).
The two important places are :
text[0]
- gives us the first character of a string, because a string could be compared to an array of chars, andtext.substr(1)
- removes the first character of the string, while it gives it to the method.After those two, if we're left with only one character the method gives us the result and returns the counter.
It may be a correct algorithm but the implementation is not a very good one. The
countVowelsRecursive
should be a pure function and not depend to scopedcount
variable. What happens when we run thecountVowelsRecursive
twice in the same code snippet? Is the result of the 1st call the same as the 2nd?No worries, you can make it a function in a function with the parent one having the count = 0 and then the child one doing the iteration. Though you got the point that the idea behind it was to showcase different algorithms, right ?
Yeah, i mentioned that the algorithm is correct at the beginning. But i felt the urge to comment about the implementation because i think it matters. Nevermind, the topic is about the algorithm so let's move on.
Awesome work Boain. Did you test the performance implications?
I haven't tried, because I made it in like 10 minutes. But I presume it's could be close to yours. If you willing to test, do post the results here for future reference. I would be really interested to know.
i'm sorry : i've tried to run an alternate version of the first function and ended spamming tests :/
I'm also performance obsessed ;)
Awesome Dallgoot. What's the issue with the tests?
No issues with the tests but many with the guy (me) who tried to make changes in them ;)
i wanted to try a version with a switch replacing the array check to see perf differences but failed miserably for some reason...
finally: I got some tests working (Revision 7, you can delete others)
So I'm seeing what I expected: switch cases are faster than array searching.
Not from much though, but still with so few values.
Nice one man. Seen it.
Great post Justine! Very detailed and well explained!
Thanks alot Muna. That's the whole point of Series (Dev-process).
Looking forward to more such tutorials.
Definitely Rahul... I'll keep sharing
is it ok to use javascript split ?
jsfiddle.net/qxd945eo/1/