Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <title>Javascript fun!</title>
- </head>
- <body>
- <h3>Javascript loop.</h3>
- <script>
- var a;
- var p1 = "The world is a vampire.";
- for ( a = 0; a < p1.length; ++a )
- {
- document.write("<p>" + p1 + "</p>");
- }
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement