476179

7B activity 3.3

Nov 19th, 2018
52
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>Activity 3 #1</title>
  6. </head>
  7.  
  8. <body>
  9. <script>
  10.  
  11. for (var i = 10; i <= 50; i++)
  12. {
  13. document.write( i + "<br>");
  14. i = i + 4;
  15. }
  16.  
  17.  
  18. </script>
  19. </body>
  20.  
  21. </html>
Add Comment
Please, Sign In to add comment