Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript Statements</h1>
<h2>The continue Statement</h2>
<p>Loop through a block of code, but skip the value 3:</p>
<p id="demo"></p>
<script>
let text = "";
for (let i = 0; i < 5; i++) {
  if (i === 3) continue;
  text += i + "<br>";
}
document.getElementById("demo").innerHTML = text;
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_state_continue by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 17:39:13 GMT -->
</html>