Advertisement
virtualideaz

ForExample.html

Apr 4th, 2015
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.36 KB | None | 0 0
  1. <html>
  2. <head>
  3.     <title>For Example JavaScript</title>
  4.     <script>
  5.         var i=0;
  6.         for(i=0; i<5; i++) {
  7.             document.writeln("The number is : " + i);
  8.             document.writeln("<br>");
  9.         }
  10.        
  11.         document.writeln("<br>");
  12.         while (i<=5) {
  13.             document.write("The number is : " + i);
  14.             document.write("<br>");
  15.             i++;
  16.         }
  17.     </script>
  18. </head>
  19. <body>
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement