1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2.  
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <title>While Logic</title>
  6. </head>
  7. <body>
  8.  
  9. <script type="text/javascript">
  10.  
  11. /* <![CDATA[ */
  12.  
  13. var count = 0;
  14. var numbers = new Array[100];
  15.  
  16. while (count < 100) {
  17. numbers[count] = count;
  18. ++count;
  19. }
  20.  
  21. count = 0;
  22.  
  23. while (count < 100) {
  24. document.write(numbers[count]);
  25. ++count;
  26. }
  27.  
  28.  
  29. /* ]]> */
  30.  
  31. </script>
  32.  
  33.  
  34. </body>
  35. </html>
  36.