RECURSION

Ojus Kapoor - Jun 17 - - Dev Community

A function may call other functions, including calling itself.A function that calls itself until the base condition is satisfied is known as a Recursive function, and the technique of using a recursive function is called Recursion.

. .