Skip to content

Instantly share code, notes, and snippets.

@4skinSkywalker
Created April 18, 2019 07:52
Show Gist options
  • Select an option

  • Save 4skinSkywalker/00331c46ede5e25f857c48a07661814e to your computer and use it in GitHub Desktop.

Select an option

Save 4skinSkywalker/00331c46ede5e25f857c48a07661814e to your computer and use it in GitHub Desktop.
function recursive(n) {
// missing Base Case
recursive(n - 1)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment