<!DOCTYPE html>
<html>
<head>
<title>Loop</title>
</head>
<body>
<h2>For Loop</h2>
<script>
for (let i = 0; i < 5; i++) {
document.write("Iteration: " + i, `<br>`);
}
</script>
</body>
</html>
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.