for (i; i <=42 ; i = i + x) { // First interation of loop i starts at 22.
x is undefined.
You can start the for loop with whatever value you like.
for (i; i <=42 ; i = i + x) { // First interation of loop i starts at 22.
x is undefined.
You can start the for loop with whatever value you like.