Skip to content

Instantly share code, notes, and snippets.

@rahulmalhotra
Created September 12, 2020 14:18
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/2e697343b0cf999cd0c187da6d910575 to your computer and use it in GitHub Desktop.
Save rahulmalhotra/2e697343b0cf999cd0c187da6d910575 to your computer and use it in GitHub Desktop.
This code snippet is used in ES6 Classes JavaScript Tutorial on SFDC Stop
'use strict'
// * Classes in ES6
// * Class is a user defined type with some data members and member functions
// * Before ES6
/*
function Car(name, speed) {
this.name = name;
this.speed = speed;
}
Car.prototype.showSpeed = function() {
console.log(this.speed);
}
let audi = new Car('audi', 200);
audi.showSpeed();
*/
// * After ES6
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