如何在 JavaScript 中使用 break 语句退出循环?
break 语句用于提前退出循环,跳出包围它的花括弧。
示例
你可以尝试运行以下代码来学习如何使用 break 语句退出循环
<html> <body> <script> var x = 1; document.write("Entering the loop<br /> "); while (x < 20) { if (x == 5) { break; // breaks out of loop completely } x = x + 1; document.write( x + "<br />"); } document.write("Exiting the loop!<br /> "); </script> </body> </html>
广告