Created
September 12, 2020 14:18
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'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