<script src='https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.5/lodash.min.js'></script>
var obj = {};
for (let i = 1; i <= 3000; i++) {
obj[i] = i.toString();
}
const myCopy = _.cloneDeep(obj);
const value = myCopy[500];
const myCopy = JSON.parse(JSON.stringify(obj));
const value = myCopy[500];
const myCopy = Object.freeze(obj);
const value = myCopy[500];
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
loadash | |
json | |
freeze and get |
Test name | Executions per second |
---|---|
loadash | 6336.6 Ops/sec |
json | 2339.7 Ops/sec |
freeze and get | 4580349.0 Ops/sec |
Benchmark Overview
MeasureThat.net is a website that allows users to create and run JavaScript microbenchmarks. The provided benchmark tests the performance of three approaches for accessing values in a deeply cloned object: Lodash's cloneDeep
, JSON cloning, and freezing and getting.
Approaches Compared
cloneDeep
: This approach uses the lodash.cloneDeep
function to create a deep copy of the original object.JSON.parse(JSON.stringify(obj))
method to create a deep clone of the original object.Object.freeze()
and then accesses the value at index 500.Pros and Cons of Each Approach
cloneDeep
:cloneDeep
due to the overhead of parsing JSON strings.Library and Its Purpose
In the benchmark, Lodash is a JavaScript library that provides various utility functions. The cloneDeep
function is specifically designed to create deep copies of complex data structures.
Special JS Feature or Syntax (None)
There are no special features or syntaxes being tested in this benchmark.
Other Considerations
cloneDeep
provides more flexibility and is suitable for complex data structures.cloneDeep
. It's suitable for small to medium-sized datasets.Alternatives
Other alternatives for deep cloning in JavaScript include:
Array.prototype.slice.call()
: Creates a shallow copy of the original array.Object.assign()
: Creates a new object with copies of the properties from the original object.structuredClone()
: A relatively new function introduced in ECMAScript 2020, designed to create deep clones of complex data structures.Note that these alternatives may not be as efficient or flexible as Lodash's cloneDeep
function.