var str = '120';
console.log(str + 'px');
console.log(`${str}px`);
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Concat | |
Template string |
Test name | Executions per second |
---|---|
Concat | 100481.8 Ops/sec |
Template string | 101466.5 Ops/sec |
Let's dive into the world of JavaScript microbenchmarks and understand what's being tested on this specific benchmark.
What is being tested?
The benchmark measures the performance difference between two approaches to concatenate strings:
+
operator: This method uses the string concatenation syntax, where two or more values are joined together.Options compared
The benchmark compares the performance of these two approaches on the same input value: str = '120'
.
Pros and Cons of each approach
+
operator:Library usage
There is no explicit library used in this benchmark. However, it's worth noting that the console.log()
function is a built-in part of the JavaScript environment and doesn't require any additional libraries.
Special JS feature or syntax
The benchmark uses template literals (Template String), which is a special syntax introduced in ECMAScript 2015. This syntax allows you to embed expressions inside string literals, making it more readable and convenient for concatenating strings.
Other alternatives
If the benchmark didn't use template literals, other alternatives could be:
String.prototype.concat()
methodKeep in mind that these alternatives might not provide the same level of expressiveness and performance as template literals.
Overall, this benchmark helps measure the performance difference between two common approaches to concatenating strings in JavaScript, making it easier for developers to choose the most efficient method for their specific use cases.