Skip to content

Instantly share code, notes, and snippets.

@tcrosen
Last active January 18, 2016 03:10
Show Gist options
  • Save tcrosen/d7b2773db0bebdfb003f to your computer and use it in GitHub Desktop.
Save tcrosen/d7b2773db0bebdfb003f to your computer and use it in GitHub Desktop.
const assign = Object.assign;
class Person {
constructor(props) {
assign(this, {
firstName: 'John',
lastName: 'Doe'
}, props);
}
getFullName() {
return `${this.firstName} ${this.lastName}`;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment