Advertisement
Guest User

Untitled

a guest
Apr 28th, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 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. // Write your code below
  12. var poem = {
  13. author: "Robert Frost",
  14. datePublished: 1916,
  15. name: "The Road Not Taken",
  16. famousLine: "Two Roads diverged in a yellow wood",
  17.  
  18. quotePoem: function (){
  19. console.log(this.famousLine);
  20. }
  21. };
  22.  
  23. poem.quotePoem;
  24. </script>
  25.  
  26.  
  27.  
  28. <script id="jsbin-source-javascript" type="text/javascript">// Write your code below
  29. var poem = {
  30. author: "Robert Frost",
  31. datePublished: 1916,
  32. name: "The Road Not Taken",
  33. famousLine: "Two Roads diverged in a yellow wood",
  34.  
  35. quotePoem: function (){
  36. console.log(this.famousLine);
  37. }
  38. };
  39.  
  40. poem.quotePoem;</script></body>
  41. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement