<script src='https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.5/lodash.min.js'></script>
var MyObject = [[1,2,3],[1,2,3],[1,2,3]];
var myCopy = null;
myCopy = _.cloneDeep(MyObject);
myCopy = JSON.parse(JSON.stringify(MyObject));
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Lodash cloneDeep | |
Json clone |
Test name | Executions per second |
---|---|
Lodash cloneDeep | 335733.8 Ops/sec |
Json clone | 475195.1 Ops/sec |
Let's break down the provided benchmark and explain what's being tested, the options being compared, their pros and cons, and other considerations.
Benchmark Definition
The benchmark compares two approaches to cloning an array: lodash.cloneDeep
(a library function) and JSON.parse(JSON.stringify())
.
Script Preparation Code
var MyObject = [[1,2,3],[1,2,3],[1,2,3]];
var myCopy = null;
This code defines a nested array MyObject
with three identical inner arrays.
Html Preparation Code
<script src='https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.5/lodash.min.js'></script>
This script tag includes the Lodash library, which provides the cloneDeep
function being used in the benchmark.
Individual Test Cases
There are two test cases:
myCopy = _.cloneDeep(MyObject);
The _.cloneDeep
function is used to deep-clone the MyObject
array, creating a new, independent copy of it.
myCopy = JSON.parse(JSON.stringify(MyObject));
This approach uses JSON.parse()
and JSON.stringify()
to create a copy of the original array. The JSON.parse()
function is used to parse the string representation of the object, effectively creating a new object with the same values.
Pros and Cons
cloneDeep
due to the additional parsing step.Library: Lodash
Lodash is a popular JavaScript library that provides a wide range of utility functions for common tasks, such as array manipulation, object transformation, and more. The cloneDeep
function is part of this library and is designed to deep-clone objects recursively, handling complex data structures like nested arrays.
Special JS Feature: None
There are no special JavaScript features or syntax used in this benchmark.
Other Alternatives
If you need to clone an array without using a library, you can use the slice()
method, which creates a shallow copy of the original array:
myCopy = MyObject.slice();
Alternatively, if you're working with older browsers that don't support modern JavaScript features, you might consider using a library like Underscore.js or Mojs.
I hope this explanation helps!