How can you map the differences between JavaScript objects?
-
The reason I want to do this is that the JavaScript objects are created from XML elements and if the element has changed I want to be able to detect that change in the JavaScript objects. So I wrote a function which maps out the differences between the first and second object. Can you improve on this function? (mapObjectDifferences, not the helper functions.) <html> <head> <title>MAP OBJECT DIFFERENCES</title> <script type="text/javascript"> function isArray(object) { return Object.prototype.toString.apply(object) == "[object Array]"; } function getType(variable) { var type = typeof variable; if (type == "object") if (isArray(variable)) return "array"; return type; } function arrayToObject(array) { var object = {}; for (var i = 0; i < array.length; ++i) if (array[i] !== "undefined") object[i] = array[i]; return object; } function mapObjectDifferences(outerObject, innerObject) { var _mapObjectDifferences = function (outerObject, innerObject, parentMap, parentName) { var localMap = {}; for (var outerProp in outerObject) { if (outerObject.hasOwnProperty(outerProp)) { var match = false; var outerPropValue = outerObject[outerProp]; var outerType = getType(outerPropValue); var result; for (var innerProp in innerObject) { if (innerObject.hasOwnProperty(innerProp)) { var innerPropValue = innerObject[innerProp]; var innerType = getType(innerPropValue); if (outerProp == innerProp && outerType == innerType) { match = true; if (outerType == "array" || outerType == "object") { if (outerType == "array") { outerPropValue = arrayToObject(outerPropValue); innerPropValue = arrayToObject(innerPropValue); } _mapObjectDifferences(outerPropValue, innerPropValue, localMap, outerProp); } break; } } } if (match == false) { localMap[outerProp] = outerType; if (parentMap) parentMap[parentName] = localMap; } else if (parentMap) { var difChild = false; for (var prop in localMap) if (localMap.hasOwnProperty(prop)) { difChild = true; break; } if (difChild == true) parentMap[parentName] = localMap; } } } return localMap; } return _mapObjectDifferences(outerObject, innerObject); } var o1 = { val: "level one", val2: 1, val3: 3, m: { s2: "this is level two", l1: ["a", "b", "c", 1, {a:"a"}], ao: [{ x: "1" }, { y: 1 }, { z: 1}] }, n: { n1: { abc: 123 } } }; var o2 = { val: "level on23e", val2: 1, m: { s3: "this is level two", l1: ["a", "b", "c"], ao: [{ x: 1 }, { y: 1 }, { z: "3"}] }, n: { n1: { abc: "abc" } } } var result = mapObjectDifferences(o1, o2); debugger; </script> </head> <body> </body> </html>
-
Answer:
The existing suggestions are good for trimming down your current code, but, as always, the most important thing to optimize is the algorithm itself. I took a crack at your problem, as I understand it, and here's the result: function difference(o1, o2) { var k, kDiff, diff = {}; for (k in o1) { if (!o1.hasOwnProperty(k)) { } else if (typeof o1[k] != 'object' || typeof o2[k] != 'object') { if (!(k in o2) || o1[k] !== o2[k]) { diff[k] = o2[k]; } } else if (kDiff = difference(o1[k], o2[k])) { diff[k] = kDiff; } } for (k in o2) { if (o2.hasOwnProperty(k) && !(k in o1)) { diff[k] = o2[k]; } } for (k in diff) { if (diff.hasOwnProperty(k)) { return diff; } } return false; } Note that I didn't try to mimic your code exactly: Arrays are compared thoroughly, not just on numbered properties. Difference map contains new values themselves, not their types. If there are no differences then the function returns false, not {}.
anonymous at Code Review Visit the source
Other answers
Replacing conditions with guard clauses would improve readability a little bit. (http://www.codinghorror.com/blog/2006/01/flattening-arrow-code.html) I would try to build two maps first - one for properties of the first object, and one for the other - then compare the two maps. The key of the map could be the name of the property (in the parentProperty.childProperty format if a property is an other object). The value could be the type of the property.
palacsint
I was going to post this as a comment to http://codereview.stackexchange.com/questions/11412/how-can-you-map-the-differences-between-javascript-objects#11454 but it helps to have code blocks. Because you're using this pattern in several places: for (var prop in obj) { if(obj.hasOwnProperty(prop)) { ... } } One way you can reduce the depth of the "arrowing" is to extract that out into its own function: function iterateMap(obj, fn, scope) { for(prop in obj) { if(obj.hasOwnProperty(prop)) { fn.call(scope || this, prop); } } } ... iterateMap(obj, function(prop) { ... });
seand
Related Q & A:
- How Can I add Latitude, Longitude dynamically in Javascript?Best solution by Stack Overflow
- How can I remove duplicate Objects from array of Objects in javascript?Best solution by Stack Overflow
- How can I get objects in a S3 bucket?Best solution by Stack Overflow
- How can I overload equal method to make different objects have same hashcode value in unordered_multimap?Best solution by Stack Overflow
- How can I make the map draggable?Best solution by Stack Overflow
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.