Skip to content

Instantly share code, notes, and snippets.

@felixzapata
Created August 21, 2014 09:03
Show Gist options
  • Save felixzapata/95b4948961d94a42a3f1 to your computer and use it in GitHub Desktop.
Save felixzapata/95b4948961d94a42a3f1 to your computer and use it in GitHub Desktop.
Object extending
Object.prototype.extend = function(obj) {
for(i in obj)
this[i] = obj[i];
};
var o = { member: "some member" };
var x = { extension: "some extension" };
o.extend(x);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment