Skip to content

Instantly share code, notes, and snippets.

@neosaurrrus
Created August 16, 2018 15:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save neosaurrrus/899023de559794ca192e5461f14b81c5 to your computer and use it in GitHub Desktop.
Save neosaurrrus/899023de559794ca192e5461f14b81c5 to your computer and use it in GitHub Desktop.
function Car(options) {
this.title = options.title;
}
function Toyota(options) {
this.color = options.color;
}
const toyota = new Toyota({ color: 'red', title: 'My wifes car"});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment