Skip to content

Instantly share code, notes, and snippets.

@ahamedali95
Last active May 5, 2020 03:35
Show Gist options
  • Save ahamedali95/d8ace0f773121585ad69f8f6196aef5d to your computer and use it in GitHub Desktop.
Save ahamedali95/d8ace0f773121585ad69f8f6196aef5d to your computer and use it in GitHub Desktop.
class Car {
#brand;
#model;
constructor(brand, model) {
this.#brand = brand;
this.#model = model;
}
getBrand() {
return this.#brand;
}
setBrand(brand) {
this.#brand = brand;
}
getModel() {
return this.#model;
}
setModel(model) {
this.#model = model;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment