Bài 08: Nhóm lệnh Break và Continue trong Java script


a. Break
Câu lệnh này có chức năng thoát khỏi một vòng lệnh nếu thỏa một điều kiện nào đó 
<html>
<body>
<script type="text/javascript">
  var i=0;
  for (i=0;i<=10;i++)
  {
         if (i==3)
         {
                 break;
         }
          document.write("The number is " + i);
         document.write("<br />");
  }
</script>
</body>
</html>

b. Continue
 Câu lệnh này có chức năng thực hiện một điều gì đó nếu thỏa một điều kiện.
<html>
<body>
<script type="text/javascript">
  var i=0
  for (i=0;i<=10;i++)
  {
         if (i==3)
         {
                 continue;
         }
         document.write("The number is " + i);
         document.write("<br />");
  }
</script>
</body>
</html>

 
Design by Free WordPress Themes | Bloggerized by Lasantha - Premium Blogger Themes | Best Buy Coupons