Skip to content

Instantly share code, notes, and snippets.

@yanisurbis
Last active August 29, 2015 14:26
Show Gist options
  • Save yanisurbis/bc3803d3b7c7675f8908 to your computer and use it in GitHub Desktop.
Save yanisurbis/bc3803d3b7c7675f8908 to your computer and use it in GitHub Desktop.
{
let count = 0;
(function foo(count) {
if (count > 5)
return;
console.log(count);
foo(count + 1);
})(count);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment