Created
February 18, 2015 01:57
-
-
Save Polyrhythm/a5d04935c0a4b7f17761 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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