JS Capsules: Recursion
Recursion is when a function calls itself until it is stopped, otherwise it continues to call itself forever. A function that does this is called a recursive function.
It usually has this syntax:
function recurse() {
if (condition) {
// stop re...
dpkreativ.hashnode.dev4 min read