运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <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>