Skip to content

Instantly share code, notes, and snippets.

@SanthoshBabuMR
Created April 13, 2020 03:46
Show Gist options
  • Save SanthoshBabuMR/14dcf4793235d6d6d35885d554b2d90e to your computer and use it in GitHub Desktop.
Save SanthoshBabuMR/14dcf4793235d6d6d35885d554b2d90e to your computer and use it in GitHub Desktop.
maximum call stack size
// Ref: https://2ality.com/2014/04/call-stack-size.html
function computeMaxCallStackSize() {
try {
return 1 + computeMaxCallStackSize();
} catch (e) {
// Call stack overflow
return 1;
}
}
computeMaxCallStackSize();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment