Guest User

Untitled

a guest
Nov 17th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. function Person(firstName, lastName) {
  2. this.firstName = firstName,
  3. this.lastName = lastName,
  4. this.fullName = function() {
  5. return this.firstName + " " + this.lastName;
  6. }
  7. }
Add Comment
Please, Sign In to add comment