Skip to content

Instantly share code, notes, and snippets.

@tcrosen
Last active January 18, 2016 02:14
Show Gist options
  • Save tcrosen/d6a2a086332525636743 to your computer and use it in GitHub Desktop.
Save tcrosen/d6a2a086332525636743 to your computer and use it in GitHub Desktop.
class Person {
constructor({ firstName = 'John', lastName = 'Doe' }) {
this.firstName = firstName;
this.lastName = lastName;
}
getFullName() {
return this.firstName + ' ' + this.lastName;
}
}
console.log(new Person({}).getFullName()); // John Doe
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