Guest User

Untitled

a guest
Oct 22nd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. window.Person5 = function(firstName, lastName) {
  2. return _({}).tap(function(self){
  3. self.firstName = firstName;
  4. self.lastName = lastName;
  5. self.fullName = function() {
  6. return self.firstName + " " + self.lastName;
  7. };
  8.  
  9. // any scope-hidden ("private") vars can go here.
  10. });
  11. };
Add Comment
Please, Sign In to add comment