Skip to content

Instantly share code, notes, and snippets.

@erockdotdev
Last active July 1, 2020 00:05
Show Gist options
  • Save erockdotdev/543359b0c19d230c64493ff50d8effe7 to your computer and use it in GitHub Desktop.
Save erockdotdev/543359b0c19d230c64493ff50d8effe7 to your computer and use it in GitHub Desktop.
const person = {
firstName: "Eric",
lastName: "Sanchez",
get fullName() {
return `${this.firstName} ${this.lastName}`;
},
set fullName(name) {
const updateName = name.split(" ");
this.firstName = updateName[0];
this.lastName = updateName[1];
},
};
person.fullName = "Dana Gambale";
console.log(person.fullName);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment