<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 = { a, b };
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
lodash merge | |
object.assign | |
spread |
Test name | Executions per second |
---|---|
lodash merge | 1201283.0 Ops/sec |
object.assign | 4399246.5 Ops/sec |
spread | 18850068.0 Ops/sec |
I'd be happy to help you understand the JavaScript microbenchmark on MeasureThat.net.
Overview
The benchmark compares three approaches for merging two objects:
_.merge()
from LodashObject.assign()
{ ... }
)Options Compared
_._merge()
from Lodash: A utility function that merges two or more objects into one, overriding properties with the same name.Object.assign()
: A built-in JavaScript method that copies the values of all enumerable own properties from one or more source objects to a target object.{ ... }
): A syntax feature in modern JavaScript that allows creating a new object by spreading the properties of an existing object.Pros and Cons
_._merge()
(Lodash):Object.assign()
:{ ... }
):Library and Syntax
The benchmark uses the Lodash library for the _._merge()
function.
Note that the spread operator is a syntax feature introduced in ECMAScript 2018. If you're using an older version of JavaScript, this approach won't work.
Test Case Breakdown
Each test case defines a simple scenario:
a
and b
with some properties.c
is created by merging a
and b
.The benchmark measures the execution time for each approach to create c
. The raw UA string, browser version, device platform, operating system, executions per second, and test name are all provided.
Other Alternatives
Other approaches for merging objects could include:
Object.create()
method and setting properties.merge-deep
or deep-merge
.However, these alternatives are not tested in this specific benchmark.