vote up 7 vote down star
5

I need to be able to merge two (very simple) JavaScript objects at runtime. For example I'd like to:

var obj1 = { food: 'pizza', car: 'ford' }
var obj2 = { animal: 'dog' }

obj1.merge(obj2);

//obj1 now has three properties: food, car, and animal

Does anyone have a script for this or know of a built in way to do this? I do not need recursion, and I do not need to merge functions, just methods on flat objects.

flag

49% accept rate

8 Answers

vote up 20 vote down check
for (attrname in obj2) { obj1[attrname] = obj2[attrname]; }

If you're using a framework that shits all over your prototypes then you have to get fancier with checks like hasOwnProperty, but that code will work for 99% of cases.

link|flag
1  
I want to up vote this ans, but I see no reason for the foul language. – allyourcode Aug 17 at 21:50
1  
@allyourcode I see your point but trying to enforce your will on the internet is like building a sand castle in the wave. Plus foul language is just noise in the signal, you learn to tune it out. – David Aug 19 at 4:16
I'm trying to enforce my will on the Internet by not upvoting an answer? I think you've got it the wrong way around. – allyourcode Aug 25 at 7:44
@John I think you mean hasOwnProperty instead of hasOwnAttribute – mindeavor. Dec 3 at 4:58
@mindeavor: Thanks, fixed – John Millikin Dec 3 at 5:47
vote up 12 vote down

jQuery also has a utility for this.

Taken from the jQuery documentation:

var settings = { validate: false, limit: 5, name: "foo" };
var options = { validate: true, name: "bar" };
jQuery.extend(settings, options);
link|flag
vote up 3 vote down

prototype.js has this:

Object.extend = function(destination,source) {
    for (var property in source)
        destination[property] = source[property];
    return destination;
}

obj1.extend(obj2) will do what you want.

link|flag
You meant Object.prototype.extend? In any case, it's not a good idea to extend Object.prototype. -1. – SolutionYogi Jul 31 at 20:08
Come to think of it, it probably should be Object.prototype and not Object... Good idea or not, this is what the prototype.js framework does, and so if you are using it or another framework that depends on it, Object.prototype will already be extended with extend. – ephemient Jul 31 at 21:14
I don't mean to harp on you but saying that it's okie because prototype.js does is a poor argument. Prototype.js is popular but it doesn't mean that they are the role model on how to do JavaScript. Check this detailed review of Prototype library by a JS pro. dhtmlkitchen.com/?category=/JavaScript/… – SolutionYogi Jul 31 at 21:19
I don't mean that it's okay -- I mean that it might already be there, so you don't might not need your own extend. – ephemient Jul 31 at 21:49
Who care's if its right or wrong? If it works then it works. Waiting around for the perfect solution is great except when trying to keep a contract, win new clients, or meet deadlines. Give anyone here who's passionate about programming free money and they'll eventually do everything the "right" way. – David Aug 19 at 4:24
show 2 more comments
vote up 2 vote down

The given solutions should be modified to check source.hasOwnProperty(property) in the for..in loops before assigning - otherwise, you end up copying the properties of the whole prototype chain, which is rarely desired...

link|flag
vote up 2 vote down

I googled for code to merge object properties and ended up here. However since there wasn't any code for recursive merge I wrote it myself. (Maybe jQuery extend is recursive b.t.w.?) Anyhow, Hopefully someone else will find it useful as well.

(Now the code does not use Object.prototype :)

Code

/*
* Recursively merge properties of two objects 
*/
function MergeRecursive(obj1, obj2) {

  for (var p in obj2) {
    try {
      // Property in destination object set; update its value.
      if ( obj2[p].constructor==Object ) {
        obj1[p] = MergeRecursive(obj1[p], obj2[p]);

      } else {
        obj1[p] = obj2[p];

      }

    } catch(e) {
      // Property in destination object not set; create it and set its value.
      obj1[p] = obj2[p];

    }
  }

  return obj1;
}

An example

o1 = {  a : 1,
        b : 2,
        c : {
          ca : 1,
          cb : 2,
          cc : {
            cca : 100,
            ccb : 200 } } };

o2 = {  a : 10,
        c : {
          ca : 10,
          cb : 20, 
          cc : {
            cca : 101,
            ccb : 202 } } };

o3 = MergeRecursive(o1, o2);

Produces object o3 like

o3 = {  a : 10,
        b : 2,
        c : {
          ca : 10,
          cb : 20,
          cc : { 
            cca : 101,
            ccb : 202 } } };

Regards Markus

link|flag
ooh extending the Object's prototype...very, very bad! erik.eae.net/archives/2005/06/06/22.13.54 <= for more info – Andreas Grech Dec 21 '08 at 13:19
Dreas, good point, thanks for pointing it out. Actually I noticed the disadvantage with Object.prototype so actually I simply rewrote the code as a function with two arguments. This should work, don't you think? There is always something new to learn :) – Markus Dec 23 '08 at 0:32
vote up 0 vote down

Wouldn't it just work by assigning a new prototype?

object1.__proto__ = object2;

The mozilla site says, that it's not in the javascript standard.

Of course this works only if the object is really simple and not a subclass (does javascript have classes?). The advantage would be the gain in speed.

link|flag
vote up 0 vote down

The correct implementation in Prototype should look like this:

var obj1 = { food: 'pizza', car: 'ford' }
var obj2 = { animal: 'dog' }

obj1 = Object.extend(obj1, obj2);
link|flag
vote up 0 vote down

The mootools implementation is the same as Prototype's:

var obj1 = { food: 'pizza', car: 'ford' }
var obj2 = { animal: 'dog' }

obj1 = Object.extend(obj1, obj2);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.