Skip to content

Instantly share code, notes, and snippets.

@cxreg
Created January 4, 2016 15:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cxreg/e1a88edcb70e734baece to your computer and use it in GitHub Desktop.
Save cxreg/e1a88edcb70e734baece to your computer and use it in GitHub Desktop.
> for (var i = 0; i < 10; i++) {
... console.log(i);
... }
0
1
2
3
4
5
6
7
8
9
undefined
> fro (var i = 0; i < 10; i++) {
... console.log(i);
... }
...
>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment