Tail recursive function in JavaScript
A recursive function is a function that calls itself until it doesn't stop. This technique is called recursion.
Here, function factorial is called in a loop like procedure. Initially, it invokes from outside of the function and invoked inside the sa...
rahulism.hashnode.dev2 min read
Favourite Jome
Software Engineer @bug0
Thanks for sharing! I'm currently taking a course that talked about Tall Call Optimization but didn't dive into it.
Do you know if Memorization can be used to replace Tall Call since it's not supported on all browsers?