Advertisement
476179

7B-CreatingForLoop

Nov 16th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>The For Loop</title>
  6. </head>
  7.  
  8. <body>
  9. <script>
  10.  
  11. for (var i =1; i <10; i++)
  12. {
  13. document.write("this loop has iterated "+ i + " time(s),<br>");
  14. }
  15.  
  16. </script>
  17. </body>
  18.  
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement