Skip to content

Instantly share code, notes, and snippets.

@tcrosen
Last active October 4, 2016 19:52
Show Gist options
  • Save tcrosen/ac1c807b7af57cc254bb to your computer and use it in GitHub Desktop.
Save tcrosen/ac1c807b7af57cc254bb to your computer and use it in GitHub Desktop.
class Person {
constructor({ firstName, lastName }) {
this.firstName = firstName || 'John';
this.lastName = lastName || 'Doe';
}
getFullName() {
return this.firstName + ' ' + this.lastName;
}
}
console.log(new Person({}).getFullName());
console.log(new Person({ lastName: 'Smith' }).getFullName()); // John Smith
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment