<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 = { b: 'goddess' };
var c = _.merge(a, b);
var a = { a: 'oh', b: 'my' };
var b = { b: 'goddess' };
var c = Object.assign(a, b);
var a = { a: 'oh', b: 'my' };
var b = { b: 'goddess' };
var c = { a, b };
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
lodash merge | |
object.assign | |
spread |
Test name | Executions per second |
---|---|
lodash merge | 2949430.2 Ops/sec |
object.assign | 10373282.0 Ops/sec |
spread | 3384002.0 Ops/sec |
Let's dive into the benchmark.
Benchmark Overview
The benchmark compares three ways to merge two objects in JavaScript: using Lodash's merge
function, Object.assign()
, and the spread operator ({ ... }
). The test cases create two objects, a
and b
, and then merge them into a third object, c
.
Options Compared
merge
function: This option uses Lodash's utility function to merge two objects.Object.assign()
: This option uses the built-in Object.assign()
method to merge two objects.{ ... }
): This option uses the spread operator to merge two objects.Pros and Cons of Each Approach
merge
function:merge
function can handle more complex merges than the other options.Object.assign()
:Object.assign()
only merges the specified properties from one object into another, which may not be what you want if you have more complex merge scenarios.{ ... }
):Object.assign()
, it only merges the specified properties from one object into another.Library Used
In this benchmark, Lodash's merge
function is used as the third option for merging two objects.
Special JS Feature/Syntax
None of the test cases use any special JavaScript features or syntax beyond what's covered in modern JavaScript standards.
Other Alternatives
If you wanted to compare other merge methods, here are a few examples:
for...in
loop to iterate over properties and assign values.lodash.mergeDeep
(which is similar to Lodash's merge
function but with more advanced features).These alternatives would require additional test cases and may not be relevant to the specific requirements of this benchmark.