/* for (statement1; statement2; statement3) { INSERT CODE statement1 is executed before for loop starts statement2 is the condition statement3 is executed after every loop } */ for (i = 0; i < 5; i++) { console.log(i); }