如何使用break语句摆脱JavaScript循环?

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>

以上是 如何使用break语句摆脱JavaScript循环? 的全部内容, 来源链接: utcz.com/z/355968.html

回到顶部