Skip to content

Instantly share code, notes, and snippets.

@tcrosen
Last active October 4, 2016 19:52
Show Gist options
  • Select an option

  • Save tcrosen/89316395bb58fa9d5a66 to your computer and use it in GitHub Desktop.

Select an option

Save tcrosen/89316395bb58fa9d5a66 to your computer and use it in GitHub Desktop.
class Person {
constructor(props) {
this.firstName = props.firstName || 'John';
this.lastName = props.lastName || 'Doe';
}
getFullName() {
return this.firstName + ' ' + this.lastName;
}
}
console.log(new Person().getFullName()); // John Doe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment