var strs = Array.from(new Array(10000)).map(() => 'String concat. ')
var result = []
for (const str of strs) {
result.push(str)
}
result = strs.map((a) => a)
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Push | |
Join |
Test name | Executions per second |
---|---|
Push | 682.9 Ops/sec |
Join | 8445.2 Ops/sec |
Let's break down the provided benchmark and explain what's being tested.
Benchmark Definition
The benchmark is designed to compare two approaches for iterating over an array of strings: for...of
with const
declaration and Array.prototype.map()
method.
Script Preparation Code The script prepares an array of 10,000 strings by concatenating the string "String concat. " to each element in the array.
Html Preparation Code There is no HTML preparation code provided, which means that the benchmark doesn't involve any DOM-related operations or interactions with a web page.
Individual Test Cases
for...of
loop with const
declaration to iterate over the strs
array and push each string into the result
array.Array.prototype.map()
method to transform each element in the strs
array and store the result in the result
array.Library Used: None There is no library used in this benchmark, which means that all operations are performed using standard JavaScript features.
Special JS Feature/Syntax:
The benchmark uses the for...of
loop with const
declaration, which is a relatively new feature introduced in ECMAScript 2017 (ES7). This loop allows for more concise and expressive iteration over arrays.
Pros and Cons
Cons:
Other Alternatives
If you wanted to compare these approaches, you could also consider using other methods such as:
forEach()
loop with an arrow functionfor
loop with indexing and bounds checkingreduce()
method instead of map()
However, the for...of
loop with const
declaration is a relatively new feature that provides a concise and expressive way to iterate over arrays, making it a good choice for this benchmark.