Skip to content

Instantly share code, notes, and snippets.

@huydx
Created May 11, 2013 17:14
Show Gist options
  • Save huydx/5560648 to your computer and use it in GitHub Desktop.
Save huydx/5560648 to your computer and use it in GitHub Desktop.
stack function
function foo(i) {
if (i < 0)
return;
document.writeln('begin:' + i);
foo(i - 1);
document.writeln('end:' + i);
}
foo(3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment