Skip to content

Instantly share code, notes, and snippets.

@Polyrhythm
Created February 18, 2015 01:57
Show Gist options
  • Save Polyrhythm/a5d04935c0a4b7f17761 to your computer and use it in GitHub Desktop.
Save Polyrhythm/a5d04935c0a4b7f17761 to your computer and use it in GitHub Desktop.
function Car(make, model) {
this.make = make;
this.model = model;
var miles = 0;
this.increasMiles = function() {
miles++;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment