Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. const person = {
  2. firstName: "Ryan",
  3. };
  4.  
  5. person.lastName = "Gosling"
  6. person.fullName = function() {
  7. return this.firstName + " " + this.lastName;
  8. }
  9.  
  10. console.log(person.fullName()) // Ryan Gosling
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement