Guest User

Untitled

a guest
Aug 16th, 2018
65
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.  
  13. var poem = {
  14. author: "Robert Frost",
  15. datePublished: 1916,
  16. name: "The Road Not Taken",
  17. famousLine: "Two roads diverged in a yellow wood",
  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.  
  30. var poem = {
  31. author: "Robert Frost",
  32. datePublished: 1916,
  33. name: "The Road Not Taken",
  34. famousLine: "Two roads diverged in a yellow wood",
  35. quotePoem: function() {
  36. console.log(this.famousLine);
  37. }
  38. }
  39.  
  40. poem.quotePoem()</script></body>
  41. </html>
Add Comment
Please, Sign In to add comment