This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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 | |
) | |
{ |