Skip to content

Instantly share code, notes, and snippets.

@rahulmalhotra
Created February 21, 2021 07:12
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 rahulmalhotra/aa8a7831deb52e06fc90067d945a5e61 to your computer and use it in GitHub Desktop.
Save rahulmalhotra/aa8a7831deb52e06fc90067d945a5e61 to your computer and use it in GitHub Desktop.
This code snippet is used in ES6 Classes JavaScript Tutorial on SFDC Stop
class Car {
#color
constructor(name, speed, color) {
this.name = name;
this.speed = speed;
this.#color = color;
}
showSpeed() {
console.log(this.speed);
}
showColor() {
console.log(this.#color);
}
}
let audi = new Car('audi', 300, 'red');
audi.showSpeed();
console.log(audi.name);
console.log(audi.speed);
// console.log(audi.#color);
audi.showColor();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment