Skip to content

Instantly share code, notes, and snippets.

@flagoworld
Created March 11, 2014 06:04
Show Gist options
  • Save flagoworld/9480365 to your computer and use it in GitHub Desktop.
Save flagoworld/9480365 to your computer and use it in GitHub Desktop.
For Loops
//A for loop is a loop dictated by 3 expressions
for(
//This is executed once at the beginning of the loop
var i=0;
//The loop continues as long as this evaluates to TRUE
i<5;
//This is executed at the end of every iteration
++i
)
{
//Rest of the loop goes here
}
@cholulaaa
Copy link

for(var i=0;i<22;++i){
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment