window.a = Math.random();
window.b = Math.random();
window.c = Math.random();
window.d = Math.random();
let str = '';
for (let i = 0; i < 1000; i++) {
str = '(' + a + ')' + '(' + b + ')' + '(' + c + ')' + '(' + d + ')'
}
let str = '';
for (let i = 0; i < 1000; i++) {
str = `(${a})(${b})(${c})(${d})`;
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
traditional string concat | |
template string concat |
Test name | Executions per second |
---|---|
traditional string concat | 1349.8 Ops/sec |
template string concat | 1442.0 Ops/sec |
Let's break down the benchmark and explain what's being tested.
Benchmark Overview
The benchmark compares two approaches to concatenate strings in JavaScript:
Both tests use the same script preparation code, which initializes four variables (a, b, c, d) with random values. The difference lies in the way these variables are concatenated into a string.
Library and Syntax Used
In this benchmark, the library used is not explicitly mentioned. However, based on the syntax, it appears that the test is using ECMAScript 2015 (ES6+) features, specifically template literals (backtick syntax
).
Template literals allow you to embed expressions inside backticks () to create a string with dynamic values. In this case,
str = ${a}
+ ${b}
+ ${c}
+ ${d}
;` is used.
Options Compared
The benchmark compares two options:
+
operator to concatenate strings, like this: str = '(' + a + ')' + '(' + b + ')' + '(' + c + ')' + '(' + d + ')';
backtick syntax
) to embed expressions inside string literals.Pros and Cons of Each Approach
Traditional String Concatenation
Pros:
Cons:
Template String Concatenation
Pros:
Cons:
Other Considerations
When choosing between traditional string concatenation and template string concatenation, consider the following factors:
Alternatives
If you're looking for alternative approaches to concatenate strings, consider:
toString()
method instead of backticks._.template
function or a custom implementation using a StringBuilder class.Keep in mind that these alternatives might not provide the same level of expressiveness and readability as template string concatenation.