var data = [
{
'key': 'Username',
'value': 'Benutzername'
},
{
'key': 'Password',
'value': 'Passwort'
},
{
'key': 'name',
'value': 'Julious'
},
{
'key': 'lastname',
'value': 'Extremus'
}
];
const newData = data.reduce((acc, { key, value }) => ({ acc, [key]: value }), {});
const newData = data.reduce((acc, row) => (acc[row.key] = row.value, acc), {});
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Using the spread operator | |
Set the properties directly in the object |
Test name | Executions per second |
---|---|
Using the spread operator | 2175007.5 Ops/sec |
Set the properties directly in the object | 10368491.0 Ops/sec |
Let's break down what's being tested in this benchmark.
What is being compared?
The benchmark compares two approaches to update an object:
...
) to create a new object and then assigning its properties to an existing object.[key] = value
).Options: Spread Operator vs Direct Property Assignment
The pros of using the spread operator are:
The cons are:
On the other hand, direct property assignment has the following pros:
However, this approach can be less readable and maintainable than using the spread operator.
Library used
There is no explicit library mentioned in the benchmark definition or test cases. However, Array.prototype.reduce()
is used to perform the update operation on the data
array.
Special JS feature or syntax
The spread operator (...
) was introduced in ECMAScript 2018 (ES2018) as a way to create new objects from existing ones and expand arrays into objects.
Other considerations:
key
and value
.Alternatives
Other approaches to update an object include:
Object.assign()
method to create a new object.In general, the choice of approach depends on the specific requirements of the project, such as performance, readability, and maintainability.