Skip to content

Instantly share code, notes, and snippets.

@AnkitMaheshwariIn
Created March 30, 2022 11:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AnkitMaheshwariIn/feff75ac463e94ac3bbbacf97897492a to your computer and use it in GitHub Desktop.
Save AnkitMaheshwariIn/feff75ac463e94ac3bbbacf97897492a to your computer and use it in GitHub Desktop.
What is the Recursion technique
function recursiveFunction() {
// other code..
// calling itself, means calling recursive function
// from within recursiveFunction
recursiveFunction();
// other code..
}
// calling recursive function 1st time
recursiveFunction();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment