Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nerdpruitt/5116513 to your computer and use it in GitHub Desktop.
Save nerdpruitt/5116513 to your computer and use it in GitHub Desktop.
function Car(color,make) {
this.color = color;
this.make = make;
this.log = function(){
console.log("My car is a " + this.color + " " + this.make + ".");
};
}
(new Car('blue','BMW')).log();
(new Car('green','Ferrari')).log();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment