Skip to content

Instantly share code, notes, and snippets.

@carpeliam
Created July 2, 2011 22:25
Show Gist options
  • Save carpeliam/1061728 to your computer and use it in GitHub Desktop.
Save carpeliam/1061728 to your computer and use it in GitHub Desktop.
# any way this could be a for loop in coffeescript too?
i = 0
j = 2
while i < 2 and j < 4
alert i
alert j
i++
j++
for (var i = 0, var j = 2; i < 2 && j < 4; i++, j++) {
alert(i); alert(j);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment