Advertisement
Guest User

Untitled

a guest
Apr 29th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. var poem = {
  2. author: "Robert Frost",
  3. datePublished: 1916,
  4. name: "The Road Not Taken",
  5. famousLine: "Two roads diverged in a yellow wood",
  6. printFamousLine: function () {
  7. console.log(this.famousLine);
  8. }
  9. };
  10.  
  11. poem.printFamousLine();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement