<script src="https://cdn.jsdelivr.net/npm/lodash@4.17.4/lodash.min.js"></script>
// 1 level deep
window.foo1 = { a: 1, b: 2, c: { a: 1, b: 2, c: { a: 1, b: 2 } } };
window.bar1 = { a: 1, b: 3, c: { a: 1, b: 2, c: { a: 1, b: 2 } } };
// 2 levels deep
window.foo2 = { a: 1, b: 2, c: { a: 1, b: 2, c: { a: 1, b: 2 } } };
window.bar2 = { a: 1, b: 2, c: { a: 1, b: 3, c: { a: 1, b: 2 } } };
// 3 levels deep
window.foo3 = { a: 1, b: 2, c: { a: 1, b: 2, c: { a: 1, b: 2 } } };
window.bar3 = { a: 1, b: 2, c: { a: 1, b: 2, c: { a: 1, b: 4 } } };
_.isEqual(window.foo1, window.bar1)
JSON.stringify(window.foo1) === JSON.stringify(window.bar1);
_.isEqual(window.foo2, window.bar2)
JSON.stringify(window.foo2) === JSON.stringify(window.bar2);
_.isEqual(window.foo3, window.bar3)
JSON.stringify(window.foo3) === JSON.stringify(window.bar3);
window.foo3 === window.bar3
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
_.isEqual Level 1 | |
JSON.stringify Level 1 | |
_.isEqual Level 2 | |
JSON.stringify Level 2 | |
_.isEqual Level 3 | |
JSON.stringify Level 3 | |
equality check |
Test name | Executions per second |
---|---|
_.isEqual Level 1 | 2434509.0 Ops/sec |
JSON.stringify Level 1 | 2170615.0 Ops/sec |
_.isEqual Level 2 | 1514852.1 Ops/sec |
JSON.stringify Level 2 | 2184838.8 Ops/sec |
_.isEqual Level 3 | 1131484.9 Ops/sec |
JSON.stringify Level 3 | 2192296.8 Ops/sec |
equality check | 8715830.0 Ops/sec |
Let's break down the provided benchmark and explain what is being tested, compared options, their pros and cons, and other considerations.
Benchmark Definition
The benchmark tests different approaches to comparing two objects in JavaScript:
_.isEqual(window.foo1, window.bar1)
(using Lodash)JSON.stringify(window.foo1) === JSON.stringify(window.bar1)
window.foo3 === window.bar3
_.isEqual(window.foo2, window.bar2)
JSON.stringify(window.foo2) === JSON.stringify(window.bar2)
JSON.stringify(window.foo3) === JSON.stringify(window.bar3)
.isEqual(window.foo3, window.bar3)
(same as option 1)Comparison Options
There are two main approaches:
Option 1: Using Lodash (_.isEqual
function)
Pros:
Cons:
Option 2: Using JSON.stringify
Pros:
Cons:
Option 3: Using ===
(strict equality)
Pros:
Cons:
Other Considerations
JSON.stringify
option may be more suitable for simple data formats, while .isEqual
might be better suited for more complex data structures.Library Used
Lodash is a popular utility library that provides a range of functions for working with JavaScript objects, including _.isEqual
. It helps to simplify the comparison process and provides a robust implementation that can handle various edge cases.
In summary, the benchmark tests three different approaches to comparing objects in JavaScript: using Lodash's _.isEqual
function, JSON.stringify
, and strict equality (===
). The choice of approach depends on the specific use case and requirements.