Advertisement
Guest User

Untitled

a guest
Sep 4th, 2015
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Javascript Template</title>
  4. <script type="text/javascript">
  5. var Things = [];
  6. for (i=0; i < 4; i++) {
  7. var Noun = Things.push(prompt("Enter"));
  8. Things.join(", ");
  9. console.log(Things);
  10. };
  11.  
  12.  
  13.  
  14.  
  15. </script>
  16. </head>
  17. <body>
  18.  
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement