-
Notifications
You must be signed in to change notification settings - Fork 0
/
eqObjects.js
60 lines (40 loc) · 1.36 KB
/
eqObjects.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
const assertEqual = require("./assertEqual.js");
const eqArrays = require("./eqArrays.js")
/*
INSTRUCTIONS: Implement the definition for function eqObjects
which will take in two objects and returns true or false,
based on a perfect match.
*/
//console.log(object1[item]) ----- prints value
const eqObjects = function(object1, object2) {
if (Object.keys(object1).length !== Object.keys(object2).length) {
return false;
}
//use FOR OF, because the loop is for an array
for (let item of Object.keys(object1)) {
// console.log("object1", object1[item])
if (Array.isArray(object1[item]) && Array.isArray(object2[item])) {
if ((eqArrays(object1[item], object2[item])) === false) {
return false;
} else{
return true;
}
}
if(object1[item] !== object2[item]) {
return false;
}
}
return true;
}
module.exports = eqObjects;
//Test conditions (Assertions)
// const cd = { c: "1", d: ["2", 3] };
// const dc = { d: ["2", 3], c: "1" };
// assertEqual(eqObjects(cd, dc), true); // => true
// const cd2 = { c: "1", d: ["2", 3, 4] };
// assertEqual(eqObjects(cd, cd2), false); // => false
// const ab = { a: "1", b: "2" };
// const ba = { b: "2", a: "1" };
// assertEqual(eqObjects(ab, ba), true); // => true
// const abc = { a: "1", b: "2", c: "3" };
// assertEqual(eqObjects(ab, abc), false); // => false