const base = '1-2'
const separator = '-';
const suffix = 3;
function templateString() {
return `${base}${separator}${suffix}`;
}
function stringConcat() {
return base.concat(separator, suffix);
}
templateString()
stringConcat()
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Template string | |
String.concat |
Test name | Executions per second |
---|---|
Template string | 19553182.0 Ops/sec |
String.concat | 15135541.0 Ops/sec |
I'll break down the benchmark and its options, pros and cons, and considerations.
Benchmark Overview
The benchmark compares two ways of concatenating strings in JavaScript: template strings (also known as template literals) and String.concat()
(version 2).
Template Strings vs. String.concat v2
Template strings are a feature introduced in ECMAScript 2015 (ES6). They allow you to embed expressions inside string literals, using the $
symbol followed by an expression.
In this benchmark, the template string version uses the ${}
syntax to concatenate three values: base
, separator
, and suffix
.
The String.concat()
version, on the other hand, uses the concat()
method with two arguments, which concatenates the first argument with the second argument.
Pros and Cons
Template Strings:
Pros:
String.concat()
due to the compiler's ability to optimize them at compile-time.Cons:
String Concat v2:
Pros:
String.concat()
has been part of JavaScript since its inception and is widely supported across browsers and Node.js versions.Cons:
concat()
can make the code harder to read, as it requires more manual effort to concatenate values.String.concat()
can be slower than template strings due to the overhead of function calls and string concatenation.Other Considerations
When choosing between these two options, consider the following:
String.concat()
might be a safer choice.Library and Special JS Features
There are no libraries used in this benchmark. However, the use of template strings demonstrates the newer ECMAScript 2015 (ES6) feature.
Alternatives
If you're looking for alternative ways to concatenate strings, consider:
String.prototype.join()
: This method concatenates multiple values into a single string.Array.prototype.concat()
: This method concatenates two arrays together.Note that these alternatives may have different performance characteristics and readability trade-offs compared to template strings or String.concat()
.
Benchmark Preparation Code
The provided script preparation code defines the base, separator, and suffix variables, as well as the two functions: templateString()
and stringConcat()
. The templateString()
function uses a template string, while the stringConcat()
function uses concat()
.
The benchmark is designed to run these two functions repeatedly, measuring their performance and comparing the results.