运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,暗色/亮色
前往 Spaces
<!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 = ""; let i = 0; while (i < 5) { i++; if (i === 3) continue; text += i + "<br>"; } document.getElementById("demo").innerHTML = text; </script> </body> </html>