Added description and resources to Recursion - JavaScript Roadmap (#1689)
* Added description and resources * Update content/roadmaps/106-javascript/content/109-javascript-functions/105-scope-and-function-stack/100-recursion.md Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>pull/1691/head
parent
c379cd250f
commit
ebcdef7cf0
1 changed files with 8 additions and 1 deletions
@ -1 +1,8 @@ |
|||||||
# Recursion |
# Recursion |
||||||
|
|
||||||
|
One of the most powerfula and elegant concept of functions, recursion is when a function invokes itself. Such a function is called a **_recursive function_**. As recursion happens, the underlying code of the recursive function gets executed again and again until a terminating condition, called the _base case_, gets fulfilled. As you dive into the world of algorithms, you'll come across recursion in many many instances. |
||||||
|
|
||||||
|
<ResourceGroupTitle>Free Content</ResourceGroupTitle> |
||||||
|
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://javascript.info/recursion'>Recursion and Stack</BadgeLink> |
||||||
|
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.codeguage.com/courses/js/functions-recursions'>JavaScript Function Recursions - CodeGuage</BadgeLink> |
||||||
|
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://developer.mozilla.org/en-US/docs/Glossary/Recursion'>Recursion - MDN</BadgeLink> |
||||||
|
Loading…
Reference in new issue