What's the best/standard way of merging two associative arrays in javascript? Does everyone just do it by rolling their own for loop?
|
|
with jquery you can call
(assoc. arrays are objects in js) look here: http://api.jquery.com/jQuery.extend/ edit: Like rymo suggested, it's better to do it this way:
As here obj1 (and obj2) remain unchanged. |
|||||||
|
|
This is how Prototype does it:
called as, for example:
EDIT: added hasOwnProperty() check as correctly pointed out by bucabay in comments |
|||||
|
|
In dojo, the 2-objects/arrays "merge" would be |
|||
|
|
|
Underscore also has an extend method:
|
||||
|
|
|
|||||
|
|
do you want to overwrite a property if the names are the same but the values are not? And do you want to permanently change one of the original objects, or do you want a new merged object returned?
|
|||
|
|
|
Keep it simple...
|
|||
|
|
|
Yahoo UI (YUI) also has a helper function for this: http://developer.yahoo.com/yui/examples/yahoo/yahoo_merge.html
|
|||
|
|
|
I needed a deep-object-merging. So all of the other answers didn't help me very much. _.extend and jQuery.extend do well, unless you have a recursive array like i do. But it ain't so bad, you can program it in five minutes:
|
|||
|
|
|
jquery has a boolean for deep copy. You could do something like that:
Also you can edit this function to support n-arrays to merge.
So now you can do
|
||||
|
|