Skip to content

Instantly share code, notes, and snippets.

@robdodson
Created June 3, 2012 03:45
Show Gist options
  • Save robdodson/2861750 to your computer and use it in GitHub Desktop.
Save robdodson/2861750 to your computer and use it in GitHub Desktop.
prototypes
function Car() {
}
Car.prototype.start = function() {
console.log('vroom vroom!');
}
// or...
function Car() {
}
Car.prototype = {
start: function() {
console.log('vroom vroom!');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment