Guest User

Untitled

a guest
Jul 20th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>concatenation</title>
  4. </head>
  5.  
  6. <body>
  7. <h1>Concatenation</h1>
  8. <script>
  9. //concatenation
  10. //ask user for name
  11. var userName;
  12. var greeting;
  13. userName = prompt("What is your name?");
  14. greeting = "Hi, " + userName + "!!";
  15. alert(greeting);
  16. </script>
  17. </body>
  18. </html>
Add Comment
Please, Sign In to add comment