Skip to content

Instantly share code, notes, and snippets.

@rahulmalhotra
Created February 17, 2021 03:39
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/ff3e5e0d5c7d389aaeecacea543c4c5a to your computer and use it in GitHub Desktop.
Save rahulmalhotra/ff3e5e0d5c7d389aaeecacea543c4c5a to your computer and use it in GitHub Desktop.
This code snippet is used in ES6 Classes JavaScript Tutorial on SFDC Stop
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();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment