如何在 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>

更新于: 08-01-2020

142 次阅读

开启你的 职业生涯

完成课程获得证书

开始吧
广告