Skip to content

Instantly share code, notes, and snippets.

@namviet3210
namviet3210 / Car.js
Last active May 13, 2020 21:32 — forked from r3dm1ke/Car.js
Car class in ES5
// "class" declaration
function Car(make, model) {
this.make = make;
this.model = model;
}
// the start method
Car.prototype.start = function() {
console.log('vroom');
}