<script src="https://cdn.jsdelivr.net/npm/es-toolkit@%5E1"></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);
--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 |
Test name | Executions per second |
---|---|
_.isEqual Level 1 | 1649608.0 Ops/sec |
JSON.stringify Level 1 | 1061625.5 Ops/sec |
_.isEqual Level 2 | 657033.1 Ops/sec |
JSON.stringify Level 2 | 1218561.0 Ops/sec |
_.isEqual Level 3 | 488539.3 Ops/sec |
JSON.stringify Level 3 | 1112690.4 Ops/sec |
The provided benchmark tests the performance of two methods for deep equality checking on JavaScript objects—_.isEqual
from the Lodash library and using JSON.stringify
. The benchmark is divided into three levels, corresponding to the complexity and nesting of the objects being compared.
1. Comparison Options:
_.isEqual
: This is a utility function from Lodash that performs a deep comparison between two values to determine if they are equivalent. It can handle nested objects and accounts for various data types effectively.JSON.stringify
: This method converts a JavaScript object into a JSON string, which can then be compared using a strict equality check (===
). However, this method is limited as it will not handle certain types of data, such as functions, undefined
, and cyclic objects.2. Test Cases: The benchmark includes six test cases, organized into three levels of object depth:
_.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)
_.isEqual
:
JSON.stringify
:
undefined
, symbols).foo1
, bar1
; foo2
, bar2
; foo3
, bar3
) with subtle differences designed to test the efficacy of the two methods across varying nesting levels.Beyond Lodash’s _.isEqual
and JSON.stringify
for deep equality checks, other methods may include:
Ramda
have their own implementations (e.g., R.equals
) that might differ in performance and capabilities.fast-deep-equal
provide very performant deep equality checks often optimized for speed.In summary, this benchmark provides clear insights into the performance of two popular methods for checking deep equality in JavaScript objects, considering various aspects including performance and ability to handle complex data structures.