BuiltWithNOF
ReadCode

 var a=1, b=7, c=9;
document.writeln("Skip this" + a + "<br>");
 while ( a < c )
  {
  document.writeln("Junk" + a + "<br>");
     a=a+1;
   { 
   while ( b > 2)
   {
   document.writeln("Loop" + b + "<br>");
             if ( b > 4)
             {
             document.writeln("go" + b + "<br>");
             }
             b=b-2;
           }
           }
           if (a == 5)
           {
           document.writeln("Skip" + a + "<br>");
           c=c-2;
           }
           document.writeln("Again" + a + "<br>");
           a = a + 2
         }

[Home] [Syllabus] [Sessions] [Writing Code] [Help] [Setup] [Instructor]