Skip to content

Instantly share code, notes, and snippets.

@arrbxr
Created June 3, 2018 20:36
Show Gist options
  • Save arrbxr/b76fdd38356447b1bfb98cf8bd00f04b to your computer and use it in GitHub Desktop.
Save arrbxr/b76fdd38356447b1bfb98cf8bd00f04b to your computer and use it in GitHub Desktop.
class Book {
constructor(author){
this._author = author;
}
//getter
get writer(){
return this._author;
}
//setter
set writer(updatedAuthor){
this._author = updatedAuthor;
}
}
const lol = new Book('anonymous');
console.log(lol.writer);
lol.writer = 'wut';
console.log(lol.writer);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment