Skip to content

Instantly share code, notes, and snippets.

@garrow
Created January 4, 2011 05:13
Show Gist options
  • Save garrow/764422 to your computer and use it in GitHub Desktop.
Save garrow/764422 to your computer and use it in GitHub Desktop.
Object.prototype.extends = function(thing) {
var self = this;
for( var prop in thing ) {
if (thing.hasOwnProperty(prop)) {
self[prop] = thing[prop];
}
}
};
var Foo = {
name: 'World'
};
var Bar = function() {
this.extends(Foo); //
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment