Skip to content

Instantly share code, notes, and snippets.

@flagoworld
flagoworld / gist:9480365
Created March 11, 2014 06:04
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
)
{