Skip to content

Instantly share code, notes, and snippets.

@baranovxyz
Created May 9, 2020 20:57
Show Gist options
  • Save baranovxyz/0c65e83ded4cff58dfd81cfd91779475 to your computer and use it in GitHub Desktop.
Save baranovxyz/0c65e83ded4cff58dfd81cfd91779475 to your computer and use it in GitHub Desktop.
function recursiveFn(n) {
if (n < 0) return true;
recursiveFn(n - 1);
}
recursiveFn(100000); // RangeError: Maximum call stack size exceeded
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment