Skip to content

Instantly share code, notes, and snippets.

@esgy
Created November 20, 2012 16:09
Show Gist options
  • Save esgy/4118871 to your computer and use it in GitHub Desktop.
Save esgy/4118871 to your computer and use it in GitHub Desktop.
js: prototype pattern
// No need for capitalization as it's not a constructor
var someCar = {
drive: function() {};
name: 'Mazda 3'
};
// Use Object.create to generate a new car
var anotherCar = Object.create(someCar);
anotherCar.name = 'Toyota Camry';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment