<html>
<body>
<h1>JavaScript Statements</h1>
<h2>The break Statement</h2>
<p>The loop is supposed to output the numbers 0 to 4, but the break statement exits the loop when i is equal to 3:</p>
<p id="demo"></p>
<script>
let text = "";
let i = 0;
while (i < 5) {
text += i + "<br>";
i++;
if (i === 3) break;
}
document.getElementById("demo").innerHTML = text;
</script>
</body>
</html>