Basic Recursion
Recursion is a functional way of doing loops. Using this approach, we can have a finer grain of control than for or while loops. Like any loop, infinite loops are possible so it is important that a break condition exist. Recursion is something that can be done in any programming language.Leave a Comment