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...
Oct 22, 20204 min read175


