Skip to content

Instantly share code, notes, and snippets.

@adrianmarkperea
Created June 19, 2020 12:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adrianmarkperea/2be52b667ab78a1dbe63f2ba26b85d83 to your computer and use it in GitHub Desktop.
Save adrianmarkperea/2be52b667ab78a1dbe63f2ba26b85d83 to your computer and use it in GitHub Desktop.
class Person {
constructor(firstName, lastName) {
this.firstName = firstName;
this.lastName = lastName;
}
fullName() {
console.log(`${firstName} ${lastName}`);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment