5.5.6 for repetation statement
The Javascript For loop resembles the for loop you might have seen in many other programming languages. It is used when you need to do a set of operations many times, with an increment of some kind after each run through the block of code. Syntax: For (var = startvalue; var<=end value; var=var+increment) {
more..