recursive method

A recursive method is a programming technique where a function calls itself repeatedly until it reaches a base case, in order to solve problems that can be broken down into smaller, simpler instances of the same problem.

Requires login.