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 = JSON.parse(JSON.stringify(MyObject));
myCopy = structuredClone(MyObject);
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
JSON.stringify | |
structuredClone |
Test name | Executions per second |
---|---|
JSON.stringify | 546215.6 Ops/sec |
structuredClone | 432339.3 Ops/sec |
I'd be happy to explain the benchmark and its results.
Benchmark Definition
The test creates two JavaScript microbenchmarks that compare the performance of JSON.stringify
and structuredClone
. The goal is to determine which method is faster for creating a deep copy of an object.
Script Preparation Code
The script preparation code defines a JavaScript object MyObject
with various properties, including description
, myNumber
, myBoolean
, and jayson
. The jayson
property contains another object with two properties: stringify
and parse
.
Html Preparation Code
There is no HTML preparation code provided.
Test Cases
The benchmark consists of two test cases:
MyObject
using JSON.parse(JSON.stringify(MyObject))
.MyObject
using structuredClone(MyObject)
.Library and its Purpose
In this benchmark, the structuredClone
library is used to create a deep copy of the object. The structuredClone
function was introduced in ECMAScript 2020 as a replacement for JSON.parse(JSON.stringify())
. It provides a safer way to clone objects, as it can handle cyclic references and other edge cases.
Special JS Feature or Syntax
There is no special JavaScript feature or syntax used in this benchmark. The only notable aspect is the use of structuredClone
, which is a relatively new function introduced in ECMAScript 2020.
Pros and Cons of Different Approaches
The two approaches are:
structuredClone
due to its parsing steps.JSON.stringify
, as it avoids parsing and creates a deep copy directly:JSON.stringify
.Other Alternatives
Before the introduction of structuredClone
, developers used to use JSON.parse(JSON.stringify())
or third-party libraries like Lodash's cloneDeep()
function. Both approaches had their limitations, but structuredClone
has become the recommended way to create deep copies in modern JavaScript.
In summary, the benchmark shows that structuredClone
is generally faster and safer than JSON.stringify
for creating deep copies of objects. This is a significant improvement over the older approach, making it easier to write robust and efficient code.