<script src='https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.5/lodash.min.js'></script>
var MyObject = {
description: 'Creates a deep copy of source, which should be an object or an array.',
myNumber: 123456789,
myBoolean: true,
jayson: {
stringify: 'JSON.stringify() method converts a JavaScript value to a JSON string....',
parse: 'JSON.parse() method parses a JSON string...'
}
};
var myCopy = null;
myCopy = _.cloneDeep(MyObject);
myCopy = structuredClone(MyObject);
myCopy = JSON.parse(JSON.stringify(MyObject));
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Lodash cloneDeep | |
Native structuredClone | |
JSON Parse |
Test name | Executions per second |
---|---|
Lodash cloneDeep | 821836.4 Ops/sec |
Native structuredClone | 129713.3 Ops/sec |
JSON Parse | 839580.1 Ops/sec |
Benchmark Overview
The provided JSON represents a JavaScript microbenchmark test case for comparing the performance of three different approaches: Lodash's cloneDeep
, Web API's structuredClone
, and JSON.parse(JSON.stringify())
.
Approaches Compared
Pros and Cons of Each Approach
Library and Purpose
The Lodash library is a popular JavaScript utility library that provides various helper functions for tasks like array manipulation, functional programming, and more. In this case, cloneDeep
is used to create deep copies of objects.
Special JS Feature or Syntax
There are no specific JS features or syntaxes being tested in this benchmark, apart from the use of ECMAScript 2020's structuredClone
function.
Alternatives
If you need alternatives to these approaches:
lodash-es
or deep-copy
.Object.assign()
or JSON.parse(JSON.stringify())
might be sufficient.In summary, the choice of approach depends on your specific requirements, performance considerations, and personal preference for library usage.