Skip to content

Instantly share code, notes, and snippets.

@jmarmolejos
Last active December 6, 2015 14:55
Show Gist options
  • Select an option

  • Save jmarmolejos/a204e85fbe64dff86ce4 to your computer and use it in GitHub Desktop.

Select an option

Save jmarmolejos/a204e85fbe64dff86ce4 to your computer and use it in GitHub Desktop.
var Foo = function() {
// ...
};
Foo.prototype.logBar = function() {
console.log("bar");
};
Foo.prototype.logFoo = function() {
console.log("foo");
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment