Skip to content

Instantly share code, notes, and snippets.

@markson
Created March 1, 2013 23:16
Show Gist options
  • Save markson/5068716 to your computer and use it in GitHub Desktop.
Save markson/5068716 to your computer and use it in GitHub Desktop.
function say(a){
console.log(a)
if(a < 5)
say(a + 1)
}
say(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment