var A = null;
var B = 'test';
var result = [A | '' , B | ''].join(' ');
var result = `${A | ''} ${B | ''}`.trim();
var result = [A, B].filter(Boolean).join(' ');
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
join | |
string + trim | |
filter + joint |
Test name | Executions per second |
---|---|
join | 2562171.5 Ops/sec |
string + trim | 3419861.2 Ops/sec |
filter + joint | 1983404.8 Ops/sec |
Let's break down the provided benchmarking scenario.
Overview
The MeasureThat.net
website provides a platform for users to create and run JavaScript microbenchmarks. The given JSON represents a benchmark with three test cases: "join vs string + trim vs filter + join".
Tested Options
The three test cases are designed to compare different approaches for concatenating strings in JavaScript:
join()
method on an array.${}
) and the trim()
method to concatenate two strings.filter()
method to remove null values from an array, followed by a call to join()
.Pros and Cons of Each Approach
${}
) which may not be familiar to all developers.Library and Special JS Features
In this benchmark, no libraries are explicitly mentioned, but template literals (${}
) are used. Template literals were introduced in ECMAScript 2015 (ES6) as a way to embed expressions inside string literals.
Other Considerations
When writing benchmarks like this, it's essential to consider the following:
Alternatives
If you need to compare different string concatenation approaches or want to optimize your own code, consider the following alternatives:
+
operator: Concatenating strings using the +
operator is a simple approach but less efficient than using join()
or template literals.Array.prototype.reduce()
: You can use the reduce()
method to concatenate an array of strings in a more functional programming style.In conclusion, this benchmark provides a good starting point for understanding the relative performance of different string concatenation approaches in JavaScript.