Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

อะไรคือความแตกต่างระหว่างการแบ่งที่มีป้ายกำกับและไม่มีป้ายกำกับใน JavaScript?


ทำลายโดยไม่มีป้ายกำกับ

คำสั่ง break ใช้เพื่อออกจากลูปก่อนกำหนด โดยแยกออกจากวงเล็บปีกกาที่ปิดอยู่ คำสั่ง break ออกจากลูป

ตัวอย่าง

มาดูตัวอย่างคำสั่ง break ใน JavaScript โดยไม่ต้องใช้ label −

สาธิตสด

<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>

ทำลายด้วยป้ายกำกับ

ป้ายกำกับใช้เพื่อควบคุมโฟลว์ของโปรแกรม เช่น สมมติว่าใช้ในลูปที่ซ้อนกันเพื่อข้ามไปยังวงในหรือวงนอก คุณสามารถลองเรียกใช้รหัสต่อไปนี้เพื่อใช้ป้ายกำกับเพื่อควบคุมการไหลด้วยคำสั่งแบ่ง -

ตัวอย่าง

สาธิตสด

<html>
   <body>
     
      <script>
            document.write("Entering the loop!<br /> ");
            outerloop: // This is the label name
       
            for (var i = 0; i < 5; i++) {
               document.write("Outerloop: " + i + "<br />");
               innerloop:
               for (var j = 0; j < 5; j++) {
                  if (j > 3 ) break ; // Quit the innermost loop
                  if (i == 2) break innerloop; // Do the same thing
                  if (i == 4) break outerloop; // Quit the outer loop
                  document.write("Innerloop: " + j + " <br />");
               }
            }
       
            document.write("Exiting the loop!<br /> ");
      </script>
     
   </body>
 </html>