<!--your preparation HTML code goes here-->
/*your preparation JavaScript code goes here
To execute async code during the script preparation, wrap it as function globalMeasureThatScriptPrepareFunction, example:*/
const a = [];
async function globalMeasureThatScriptPrepareFunction() {
// This function is optional, feel free to remove it.
// await someThing();
for(let i = 0; i < 100000; i++) {
const x = Math.floor(Math.random() * 1000);
const y = Math.floor(Math.random() * 1000);
a.push({ x, y });
}
}
let g = 'M';
for(let point of a) {
const x = point.x.toFixed(0);
const y = point.y.toFixed(0);
g += x + ',' + y + ' ';
}
let b = 'M';
for(let j = 0; j < a.length; j++) {
const point = a[j];
const x = point.x.toFixed(0);
const y = point.y.toFixed(0);
b += x + ',' + y + ' ';
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
join | |
for loop concatenation |
Test name | Executions per second |
---|---|
join | 85.5 Ops/sec |
for loop concatenation | 90.0 Ops/sec |
The provided benchmark evaluates the performance of two different methods of joining strings in JavaScript using the data generated during the preparation phase. The main context involves creating a large array of objects, each containing two numerical properties x
and y
. The benchmark then compares two approaches to concatenate formatted string representations of these properties.
Join (using for...of
):
let g = 'M';
for(let point of a) {
const x = point.x.toFixed(0);
const y = point.y.toFixed(0);
g += x + ',' + y + ' ';
}
for...of
syntax to iterate over each object in array a
. For each object, it formats the x
and y
values to fixed-point notation (with 0 decimal places) and concatenates them to a string g
.For Loop Concatenation:
let b = 'M';
for(let j = 0; j < a.length; j++) {
const point = a[j];
const x = point.x.toFixed(0);
const y = point.y.toFixed(0);
b += x + ',' + y + ' ';
}
for
loop, iterating over the array using its index. It retrieves each object and generates a formatted string in a manner similar to the first method.ExecutionsPerSecond
metric:for...of
): Approximately 44.37 executions per second.The slight performance advantage of the first method can be attributed to optimizations in the JavaScript engine for handling iterable structures.
Memory Usage: Both methods keep concatenating strings to a single variable. JavaScript strings are immutable, meaning each concatenation potentially creates a new string. This could lead to inefficient memory usage for a very large dataset. For more efficient string concatenation, using Array.prototype.join()
to accumulate parts into an array and then joining them could be a better approach.
Alternatives:
join()
Method: const result = a.map(point => `${point.x.toFixed(0)},${point.y.toFixed(0)}`).join(' ');
This method avoids creating multiple intermediate string copies and is often faster for large datasets.+
operators, using template literals (backticks) can enhance code readability:const result = `${point.x.toFixed(0)},${point.y.toFixed(0)}`;
lodash
could facilitate a more functional programming style when dealing with collections of data.In conclusion, the benchmark illustrates the performance between two similar approaches for string manipulation in JavaScript. While both methods are valid, their performance can vary based on the context and size of the data, with alternatives often providing better efficiency for larger datasets.