//for iterating a certain number of times for(j = 0; j < 20; j++){ console.log(`do something for ${j + 1} time(s)`) } console.log("End of For loop")