Let's define a helper function called "factorial-helper" that takes two arguments: the current value of the factorial and the current number being multiplied.
In each recursive call, we will multiply the current value by the current number and call the helper
Show more…