Skip to content

Instantly share code, notes, and snippets.

@goldhand
Created July 30, 2015 18:07
Show Gist options
  • Save goldhand/ee579399ad2b4c973f16 to your computer and use it in GitHub Desktop.
Save goldhand/ee579399ad2b4c973f16 to your computer and use it in GitHub Desktop.
Intro to Javascript prototypes
function Car() {}
var myCar = new Car;
Car.prototype.tickets = 0;
Car.prototype.incrementTickets = function() {
this.tickets++;
return this.tickets;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment