Skip to content

Instantly share code, notes, and snippets.

@mikegerwitz
Created March 7, 2011 02:55
Show Gist options
  • Save mikegerwitz/857992 to your computer and use it in GitHub Desktop.
Save mikegerwitz/857992 to your computer and use it in GitHub Desktop.
function foo( i )
{
if ( i === 0 )
{
return;
}
foo( i - 1 );
}
foo( 9999999999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment