Skip to content

Instantly share code, notes, and snippets.

@leods92
Created June 18, 2012 16:33
Show Gist options
  • Save leods92/2949276 to your computer and use it in GitHub Desktop.
Save leods92/2949276 to your computer and use it in GitHub Desktop.
Javascript Car class
var Car
, prius
;
Car = function(b, m, y) {
this.brand = b;
this.model = m;
this.year = y;
};
Car.prototype.rent = function() {
console.log("You've just rent a " + this.model + ".");
};
prius = new Car("Toyota", "Prius", "2012");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment