Guest User

Untitled

a guest
Nov 17th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 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. //function expression
  12. var gay = function() {
  13. console.log ("Zachy is a fag bag!");
  14. };
  15.  
  16. gay();
  17.  
  18. //function declaration
  19. function gayer() {
  20. console.log ("Zachy is a fag bag!");
  21. }
  22.  
  23. gayer();
  24.  
  25. //object
  26. var thack = {
  27. name: "Zachy",
  28. age: "toomuchold",
  29. gay: true
  30. };
  31. </script>
  32.  
  33.  
  34.  
  35. <script id="jsbin-source-javascript" type="text/javascript">//function expression
  36. var gay = function() {
  37. console.log ("Zachy is a fag bag!");
  38. };
  39.  
  40. gay();
  41.  
  42. //function declaration
  43. function gayer() {
  44. console.log ("Zachy is a fag bag!");
  45. }
  46.  
  47. gayer();
  48.  
  49. //object
  50. var thack = {
  51. name: "Zachy",
  52. age: "toomuchold",
  53. gay: true
  54. };</script></body>
  55. </html>
Add Comment
Please, Sign In to add comment