Guest User

Untitled

a guest
Oct 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. window.Person2 = function(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