Guest User

Untitled

a guest
Jan 18th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width">
  6. <title>JS Bin</title>
  7. </head>
  8. <body>
  9.  
  10. <script id="jsbin-javascript">
  11. var sayHello = function () {
  12. var name = "Marie";
  13. console.log("Hello " + name);
  14.  
  15. };
  16.  
  17. // Hint: Move this line of code:
  18.  
  19. sayHello();
  20. </script>
  21.  
  22.  
  23.  
  24. <script id="jsbin-source-javascript" type="text/javascript">var sayHello = function () {
  25. var name = "Marie";
  26. console.log("Hello " + name);
  27.  
  28. };
  29.  
  30. // Hint: Move this line of code:
  31.  
  32. sayHello();
  33. </script></body>
  34. </html>
Add Comment
Please, Sign In to add comment