Well, I’ve seen a lot of places talking about the technique, and citing codes like:
factorial = function(n) {
factorial(n-1);
}
I don’t understand the concept of calling a function within itself. What precisely does this accomplish, and how is it legal? Shouldn’t the function definition fail because while its being defined its calling a function that does not yet exist.
Also, what problem could be solved by recursion?