"use strict";
const testArray = [];
for (let i = 0; i < 100; i++) {
const obj = {
index: Math.ceil(Math.random() * 100),
foo: {
size: Math.ceil(Math.random() * 100),
color: `${Math.ceil(Math.random() * 255)} ${Math.ceil(Math.random() * 255)} ${Math.ceil(Math.random() * 255)}`
},
simpleObjs: []
};
for (let j = 0; j < 25; j++) {
const simpleObject = {
title: `${Math.ceil(Math.random() * 666)}`,
quantity: Math.ceil(Math.random() * 10),
description: `WOOW${Math.ceil(Math.random() * 100)}OWOWOWO${Math.ceil(Math.random() * 100)}WOW`
};
obj.simpleObjs.push(simpleObject);
}
testArray.push(obj);
}
testArray.sort((a, b) => {
if (a.index > b.index) {
return 1;
}
if (a.index < b.index) {
return -1;
}
return 0;
});
"use strict";
const testArray = [];
for (let i = 0; i < 100; i++) {
const obj = {
index: Math.ceil(Math.random() * 100),
foo: {
size: Math.ceil(Math.random() * 100),
color: `${Math.ceil(Math.random() * 255)} ${Math.ceil(Math.random() * 255)} ${Math.ceil(Math.random() * 255)}`
},
simpleObjs: []
};
for (let j = 0; j < 25; j++) {
const simpleObject = {
title: `${Math.ceil(Math.random() * 666)}`,
quantity: Math.ceil(Math.random() * 10),
description: `WOOW${Math.ceil(Math.random() * 100)}OWOWOWO${Math.ceil(Math.random() * 100)}WOW`
};
obj.simpleObjs.push(simpleObject);
}
testArray.push(obj);
}
testArray.sort(({ index: aIndex }, { index: bIndex }) => {
if (aIndex > bIndex) {
return 1;
}
if (aIndex < bIndex) {
return -1;
}
return 0;
});
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Access | |
Destruct |
Test name | Executions per second |
---|---|
Access | 3502.8 Ops/sec |
Destruct | 3514.8 Ops/sec |
Let's dive into the world of JavaScript microbenchmarks!
Benchmark Overview
The provided benchmark compares two approaches to sorting an array: with destructuring and without destructuring.
Without Destructuring
In this approach, each object in the testArray
has a nested simpleObjs
property containing an array of simple objects. When sorting, the callback function compares the index
properties of individual objects within the arrays using the Math.ceil(Math.random() * 100)
expression.
With Destructuring
In this approach, each object in the testArray
has a single index
property and no nested simpleObjs
property. When sorting, the callback function compares the index
properties of individual objects using destructuring assignment: { index: aIndex }, { index: bIndex }
.
Options Compared
The two approaches differ in how they access and compare the index
properties of objects within the arrays.
sort()
method uses a callback function that directly compares the values of individual objects' index
properties.sort()
method uses a callback function that takes advantage of destructuring assignment to extract the index
property from each object in a single step.Pros and Cons
Without Destructuring:
Pros:
Cons:
With Destructuring:
Pros:
Cons:
Library and Special JS Feature
The provided benchmark does not explicitly use any libraries. However, it relies on the Math.ceil()
function, which is a built-in JavaScript function.
There are no special JavaScript features or syntax used in this benchmark beyond ES6+-style destructuring assignment.
Alternatives
Other approaches to sorting arrays include:
Array.prototype.sort()
with a simple callback function that compares values directlyreduce()
or map()
for array processingHowever, the comparison between without and with destructuring remains a fundamental benchmark in evaluating the performance of JavaScript engines.