var nLoops = 1000;
var shortString = "aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ"; // 52 characters
var longString = '';
for (var i = 0; i < 40; i++) {
longString += shortString; // 52 characters x 40 = 2,080 characters
}
var str = '';
for (var i = 0; i < nLoops; i++) {
str += shortString;
}
var str = '';
for (var i = 0; i < nLoops; i++) {
str += longString;
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Add short string each loop | |
Add long string each loop |
Test name | Executions per second |
---|---|
Add short string each loop | 378144.7 Ops/sec |
Add long string each loop | 371561.7 Ops/sec |
Let's dive into the explanation.
Benchmark Purpose
The benchmark tests whether the size of the string concatenated affects the performance of JavaScript. In other words, it measures how fast two different approaches are when concatenating strings:
Options Compared
The benchmark compares two options:
+
operator to concatenate strings.Pros and Cons
Both approaches have their trade-offs:
str
variable at any given time.str
variable.Library and Purpose
The benchmark uses no external libraries. It only relies on JavaScript's built-in functionality to concatenate strings.
Special JS Features or Syntax
There is no special JavaScript feature or syntax used in this benchmark.
Other Considerations
When building up large strings, it's essential to consider the following:
Alternative Approaches
For building up long strings, alternative approaches might include:
Array.prototype.join()
or a similar method to concatenate an array of strings into a single string.In conclusion, the benchmark tests whether adding short strings repeatedly affects performance compared to building up long strings by repeating a short string multiple times. The results can provide insight into how JavaScript handles string concatenation and allocation, which is essential for optimizing applications that involve frequent string manipulation.