Checking deep object equivalence (by value) using recursive function and printing differencesHow do I check if an array includes an object in JavaScript?How to check if an object is an array?How to return value from an asynchronous callback function?How to get all properties values of a Javascript Object (without knowing the keys)?Check if a value is an object in JavaScriptJavascript object reference breaks after changing initial object's valueFrom an array of objects, extract value of a property as arrayComparing Types, Values and Objects in JavaScript (Not a duplicate)Updating object properties and adding them in a new Arr with Reduce Javascriptpush to array within javascript object
Identify a stage play about a VR experience in which participants are encouraged to simulate performing horrific activities
Can a malicious addon access internet history and such in chrome/firefox?
A workplace installs custom certificates on personal devices, can this be used to decrypt HTTPS traffic?
Java - What do constructor type arguments mean when placed *before* the type?
I'm in charge of equipment buying but no one's ever happy with what I choose. How to fix this?
Who must act to prevent Brexit on March 29th?
What is Sitecore Managed Cloud?
How can I raise concerns with a new DM about XP splitting?
Female=gender counterpart?
Calculating the number of days between 2 dates in Excel
Invariance of results when scaling explanatory variables in logistic regression, is there a proof?
Are taller landing gear bad for aircraft, particulary large airliners?
Why isn't KTEX's runway designation 10/28 instead of 9/27?
Organic chemistry Iodoform Reaction
A social experiment. What is the worst that can happen?
In Star Trek IV, why did the Bounty go back to a time when whales were already rare?
Can the electrostatic force be infinite in magnitude?
Teaching indefinite integrals that require special-casing
Perfect riffle shuffles
What do you call the infoboxes with text and sometimes images on the side of a page we find in textbooks?
node command while defining a coordinate in TikZ
Can I rely on these GitHub repository files?
Can a Bard use an arcane focus?
Superhero words!
Checking deep object equivalence (by value) using recursive function and printing differences
How do I check if an array includes an object in JavaScript?How to check if an object is an array?How to return value from an asynchronous callback function?How to get all properties values of a Javascript Object (without knowing the keys)?Check if a value is an object in JavaScriptJavascript object reference breaks after changing initial object's valueFrom an array of objects, extract value of a property as arrayComparing Types, Values and Objects in JavaScript (Not a duplicate)Updating object properties and adding them in a new Arr with Reduce Javascriptpush to array within javascript object
I'd like to write a function in pure Javascript, the function should compare 2 objects and detect differences. The objects can contain arrays and objects inside arrays.
Specifically, given the 3 objects shown in the code below:
- If I compare firstObject and secondObject, my function should detect that b.b[1].b is "k" instead of "b"
- If I compare firstObject and thirdObject, my function should detect that b.a doesn't exist
- The order of keys in "object2" should not matter, however, in arrays, it does (In arrays, the order of values inside the arrays should be the same as in "object1")
What I'm trying:
//Recursive function
function compare1(object1, object2)
Object.keys(object1).forEach(function (k)
if (typeof object1 !== 'object')
if (object1[k] != object2[k])
console.log('Different value found, expected ' + object1[k] + ", found " + object2[k])
else
compare1(object1[k], object2[k]);
);
const firstObject =
a: 1,
b:
a: 1,
b: [4, a: "a", b: "b" , 2],
c: 2
,
c: 2,
d: 3
;
const secondObject =
a: 1,
b:
a: 1,
b: [4, a: "a", b: "n" , 2],
c: 2
,
c: 2,
d: 3
;
const thirdObject =
a: 1,
b:
b: [4, a: "a", b: "b" , 2],
c: 2
,
c: 2,
d: 3
;
compare1(firstObject, secondObject);
This code prints:
Different value found, expected b, found n
Which is the expected behavior, however, there are 2 things I can't seem to figure out
In the console log shown above, I would like to also show the position of the differing key: so the log should instead be:
Different value found, expected b, found n at b.b[1].b
The existence of the key should be checked before checking for equality, so that, if I run:
compare1(firstObject, thirdObject);
The console should log:
Key not found at b.a
I know that there are JS libraries that make deep comparison of objects, however, I'd like to do this in pure Javascript
javascript-objects object-comparison
add a comment |
I'd like to write a function in pure Javascript, the function should compare 2 objects and detect differences. The objects can contain arrays and objects inside arrays.
Specifically, given the 3 objects shown in the code below:
- If I compare firstObject and secondObject, my function should detect that b.b[1].b is "k" instead of "b"
- If I compare firstObject and thirdObject, my function should detect that b.a doesn't exist
- The order of keys in "object2" should not matter, however, in arrays, it does (In arrays, the order of values inside the arrays should be the same as in "object1")
What I'm trying:
//Recursive function
function compare1(object1, object2)
Object.keys(object1).forEach(function (k)
if (typeof object1 !== 'object')
if (object1[k] != object2[k])
console.log('Different value found, expected ' + object1[k] + ", found " + object2[k])
else
compare1(object1[k], object2[k]);
);
const firstObject =
a: 1,
b:
a: 1,
b: [4, a: "a", b: "b" , 2],
c: 2
,
c: 2,
d: 3
;
const secondObject =
a: 1,
b:
a: 1,
b: [4, a: "a", b: "n" , 2],
c: 2
,
c: 2,
d: 3
;
const thirdObject =
a: 1,
b:
b: [4, a: "a", b: "b" , 2],
c: 2
,
c: 2,
d: 3
;
compare1(firstObject, secondObject);
This code prints:
Different value found, expected b, found n
Which is the expected behavior, however, there are 2 things I can't seem to figure out
In the console log shown above, I would like to also show the position of the differing key: so the log should instead be:
Different value found, expected b, found n at b.b[1].b
The existence of the key should be checked before checking for equality, so that, if I run:
compare1(firstObject, thirdObject);
The console should log:
Key not found at b.a
I know that there are JS libraries that make deep comparison of objects, however, I'd like to do this in pure Javascript
javascript-objects object-comparison
add a comment |
I'd like to write a function in pure Javascript, the function should compare 2 objects and detect differences. The objects can contain arrays and objects inside arrays.
Specifically, given the 3 objects shown in the code below:
- If I compare firstObject and secondObject, my function should detect that b.b[1].b is "k" instead of "b"
- If I compare firstObject and thirdObject, my function should detect that b.a doesn't exist
- The order of keys in "object2" should not matter, however, in arrays, it does (In arrays, the order of values inside the arrays should be the same as in "object1")
What I'm trying:
//Recursive function
function compare1(object1, object2)
Object.keys(object1).forEach(function (k)
if (typeof object1 !== 'object')
if (object1[k] != object2[k])
console.log('Different value found, expected ' + object1[k] + ", found " + object2[k])
else
compare1(object1[k], object2[k]);
);
const firstObject =
a: 1,
b:
a: 1,
b: [4, a: "a", b: "b" , 2],
c: 2
,
c: 2,
d: 3
;
const secondObject =
a: 1,
b:
a: 1,
b: [4, a: "a", b: "n" , 2],
c: 2
,
c: 2,
d: 3
;
const thirdObject =
a: 1,
b:
b: [4, a: "a", b: "b" , 2],
c: 2
,
c: 2,
d: 3
;
compare1(firstObject, secondObject);
This code prints:
Different value found, expected b, found n
Which is the expected behavior, however, there are 2 things I can't seem to figure out
In the console log shown above, I would like to also show the position of the differing key: so the log should instead be:
Different value found, expected b, found n at b.b[1].b
The existence of the key should be checked before checking for equality, so that, if I run:
compare1(firstObject, thirdObject);
The console should log:
Key not found at b.a
I know that there are JS libraries that make deep comparison of objects, however, I'd like to do this in pure Javascript
javascript-objects object-comparison
I'd like to write a function in pure Javascript, the function should compare 2 objects and detect differences. The objects can contain arrays and objects inside arrays.
Specifically, given the 3 objects shown in the code below:
- If I compare firstObject and secondObject, my function should detect that b.b[1].b is "k" instead of "b"
- If I compare firstObject and thirdObject, my function should detect that b.a doesn't exist
- The order of keys in "object2" should not matter, however, in arrays, it does (In arrays, the order of values inside the arrays should be the same as in "object1")
What I'm trying:
//Recursive function
function compare1(object1, object2)
Object.keys(object1).forEach(function (k)
if (typeof object1 !== 'object')
if (object1[k] != object2[k])
console.log('Different value found, expected ' + object1[k] + ", found " + object2[k])
else
compare1(object1[k], object2[k]);
);
const firstObject =
a: 1,
b:
a: 1,
b: [4, a: "a", b: "b" , 2],
c: 2
,
c: 2,
d: 3
;
const secondObject =
a: 1,
b:
a: 1,
b: [4, a: "a", b: "n" , 2],
c: 2
,
c: 2,
d: 3
;
const thirdObject =
a: 1,
b:
b: [4, a: "a", b: "b" , 2],
c: 2
,
c: 2,
d: 3
;
compare1(firstObject, secondObject);
This code prints:
Different value found, expected b, found n
Which is the expected behavior, however, there are 2 things I can't seem to figure out
In the console log shown above, I would like to also show the position of the differing key: so the log should instead be:
Different value found, expected b, found n at b.b[1].b
The existence of the key should be checked before checking for equality, so that, if I run:
compare1(firstObject, thirdObject);
The console should log:
Key not found at b.a
I know that there are JS libraries that make deep comparison of objects, however, I'd like to do this in pure Javascript
javascript-objects object-comparison
javascript-objects object-comparison
asked Mar 21 at 14:30
TomTom
265
265
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55282783%2fchecking-deep-object-equivalence-by-value-using-recursive-function-and-printin%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55282783%2fchecking-deep-object-equivalence-by-value-using-recursive-function-and-printin%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown