Javascript For Loops in the ECMA Standard Simple For Loop The simplest type of for loop increments a variable as its iteration method. The variable acts as a counter for every “n”th element within an object. for (let i = 0; i < array.length; i++) { console.log(array[i]); } The loop could also be written in […]