Skip to content

Instantly share code, notes, and snippets.

@kyaido
Created June 12, 2014 07:59
Show Gist options
  • Save kyaido/f36b6ee0df276644be53 to your computer and use it in GitHub Desktop.
Save kyaido/f36b6ee0df276644be53 to your computer and use it in GitHub Desktop.
(function showNum(i) {
switch (true) {
case i <= 100:
console.log(i);
i++;
showNum(i);
}
})(1);
// http://qiita.com/puriketu99/items/7ab216e64d522fe990c9
// http://qiita.com/puriketu99/items/92b83172268685fceaf2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment