Skip to content

Instantly share code, notes, and snippets.

@brianleroux
Created March 2, 2010 21:31
Show Gist options
  • Save brianleroux/319972 to your computer and use it in GitHub Desktop.
Save brianleroux/319972 to your computer and use it in GitHub Desktop.
window.recurse = function(times)
{
if (times !== 0)
recurse(times - 1);
}
recurse(13); // stack overlfow at: 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment