var list = [];
for (let i = 0; i < 10; ++i) {
const type = i % 2 === 1 ? 'cases' : 'non-case';
const newObj = {
test: 'destructoring vs assigment',
type === 'cases' && {name}) (
}
list.push(newObj);
}
var list = [];
for (let i = 0; i < 10; ++i) {
const type = i % 2 === 1 ? 'cases' : 'non-case';
const newObj = {
test: 'destructoring vs assigment',
name: type === 'cases' ? name: undefined,
}
list.push(newObj);
}
var list = [];
for (let i = 0; i < 10; ++i) {
const type = i % 2 === 1 ? 'cases' : 'non-case';
const newObj = {
test: 'destructoring vs assigment',
}
if (type === 'cases')
newObj.name = name;
list.push(newObj);
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Destructuring | |
Assigment | |
Assignment (alternative) |
Test name | Executions per second |
---|---|
Destructuring | 745854.3 Ops/sec |
Assigment | 534902.8 Ops/sec |
Assignment (alternative) | 895200.9 Ops/sec |
Let's break down the benchmark and explain what's being tested.
Benchmark Definition
The benchmark is defined by a JSON object with three properties:
Name
: A unique name for the benchmark, which is "Evaluate Destructuring vs Assignment3".Description
: An empty string indicating that there is no description for this benchmark.Script Preparation Code
and Html Preparation Code
: Empty strings indicating that no preparation code is required.Test Cases
The benchmark consists of three individual test cases:
test
property set to "destructoring vs assigment". For even-indexed elements (0, 2, 4, ...), the object also has a name
property set using destructuring assignment.test
property set to "destructoring vs assigment". For even-indexed elements (0, 2, 4, ...), the object also has a name
property set using regular assignment.name
property is only assigned if the element is a "case" (i.e., its index is even).Libraries and Features
None of the test cases use any external libraries or special JavaScript features. They are basic examples that demonstrate the difference between destructuring assignment and regular assignment.
Options Compared
The three test cases compare the performance of three different approaches:
Pros and Cons of Each Approach
Other Considerations
The benchmark is likely testing the performance of these different approaches in a general-purpose JavaScript engine. The results can be used to compare the performance of these approaches across different browsers, engines, or use cases.
Alternatives
If you're looking for alternative benchmarks or test cases, here are a few options: