Skip to content

Instantly share code, notes, and snippets.

@tcrosen
Created January 17, 2016 23:53
Show Gist options
  • Save tcrosen/a51755fc2d7b1df0619f to your computer and use it in GitHub Desktop.
Save tcrosen/a51755fc2d7b1df0619f to your computer and use it in GitHub Desktop.
function Person(props) {
this.firstName = props.firstName;
this.lastName = props.lastName;
}
Person.prototype.getFullName = function() {
return this.firstName + ' ' + this.lastName;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment