Guest User

Untitled

a guest
Nov 15th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 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. sayHello();
  17. </script>
  18.  
  19.  
  20.  
  21. <script id="jsbin-source-javascript" type="text/javascript">
  22.  
  23. var sayHello = function () {
  24. var name = "Marie";
  25. console.log("Hello " + name);
  26. };
  27.  
  28. sayHello();</script></body>
  29. </html>
Add Comment
Please, Sign In to add comment