<script src='https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.5/lodash.min.js'></script>
var a = { a: 'oh', b: 'my' };
var b = { c: 'goddess' };
var c = _.merge(a, b);
var a = { a: 'oh', b: 'my' };
var b = { c: 'goddess' };
var c = Object.assign(a, b);
var a = { a: 'oh', b: 'my' };
var b = { c: 'goddess' };
var c = _.assign(a, b);
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
lodash merge | |
object.assign | |
spread |
Test name | Executions per second |
---|---|
lodash merge | 6890835.5 Ops/sec |
object.assign | 11341884.0 Ops/sec |
spread | 8526996.0 Ops/sec |
Let's break down the provided benchmark and explain what's being tested, compared options, pros and cons of each approach, and other considerations.
What is being tested?
The test case compares three approaches for merging two objects in JavaScript:
_.merge(a, b)
from the Lodash libraryObject.assign()
methoda = { ... }
)Options compared:
_merge()
function to combine two objects.Object.assign()
.Library:
In the provided benchmark, Lodash is used. Lodash is a popular JavaScript library that provides utility functions for various tasks, including data manipulation, string manipulation, and more. The _merge()
function in particular allows for merging objects by recursively combining their properties.
Special JS feature or syntax:
The spread syntax (a = { ... }
) is being tested as part of the Object.assign()
method.
Other considerations:
Alternatives:
Other alternatives for merging objects in JavaScript could include:
merge()
function from a different library, such as lodash-es
(ES module version of Lodash).immer
.Keep in mind that these alternatives might have their own trade-offs in terms of performance, readability, and maintenance.