Using the label Statement : For : Language Basics JAVASCRIPT DHTML TUTORIALS


JAVASCRIPT DHTML TUTORIALS » Language Basics » For »

 

Using the label Statement



<html>
<head>
<title>Using the label Statement</title>
</head>
<body>
  <script language="JavaScript1.2" type="text/javascript">  <!--
    var stopX = 3;
    var stopY = 8;
   
    document.write("All x,y pairs between (0,0) and (");
    document.write(stopX + "," + stopY + "):<br>");
   
    loopX:
    for(var x = 0; x < 5; ++x){
      for(var y = 0; y < 10; ++y){
        document.write("("+x + "," + y +") ");
        if((x == stopX&& (y == stopY)){
          break loopX;
        }
      }
      document.write("<br>");
    }
    document.write("<br>x equals : " + x);
    document.writeln("<br>y equals : " + y);
  // -->
  </script>
</body>
</html>

           
       



-

Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

JAVASCRIPT DHTML TUTORIALS

 Navioo Language Basics
» For