Skip to content

Instantly share code, notes, and snippets.

@caiogranero
Last active July 18, 2018 23:54
Show Gist options
  • Save caiogranero/ca8e947e83c4d7854ca26227b03006c2 to your computer and use it in GitHub Desktop.
Save caiogranero/ca8e947e83c4d7854ca26227b03006c2 to your computer and use it in GitHub Desktop.
class User {
constructor(firstName, lastName) {
this._firstName = firstName;
this._lastName = lastName;
}
get fullName() {
console.log(this._firstName + " " + this._lastName);
}
set firstName(name) {
this._firstName = name;
}
set lastName(name) { }
}
const user = new User("Jon", "Snow")
user.fullName; // Jon Snow
user.firstName = "Joon"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment