Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save 4skinSkywalker/e59f7d970c83c92475f81b90b0f9ea7d to your computer and use it in GitHub Desktop.
function recursive(n) {
if (n === 0)
return
// recursive call with same input
recursive(n)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment