let retArray = [];
for (var i = 0; i < 3; i++) {
retArray.push(0);
}
new Array(3).fill(0)
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
for | |
fill |
Test name | Executions per second |
---|---|
for | 63022352.0 Ops/sec |
fill | 4703672.0 Ops/sec |
Let's dive into the world of JavaScript microbenchmarks on MeasureThat.net.
Benchmark Definition
The benchmark definition is represented by the JSON object:
{
"Name": "for vs fill",
"Description": null,
"Script Preparation Code": null,
"Html Preparation Code": null
}
This benchmark compares two different approaches to create an array of zeros: using a for
loop ("for"
test case) versus using the fill()
method ("fill"
test case).
Options Compared
In this benchmark, we have two options:
for
loop to create an array and push zeros into it.new Array(3).fill(0)
syntax to create an array and fill it with zeros.Pros and Cons of Each Approach
fill()
method.let
instead of var
, avoiding unnecessary assignments).for
loop approach.Special Library or Syntax
None in this benchmark, but it's worth noting that both approaches use standard JavaScript features: arrays and loops. The fill()
method is a relatively modern addition to the language (introduced in ECMAScript 2015), but its usage is widely supported across modern browsers and environments.
Other Considerations
When optimizing JavaScript performance, it's essential to consider the following factors:
Alternative Approaches
For creating an array of zeros, some alternative approaches you might consider include:
Array.from(new Array(3), () => 0)
to create an array and fill it with zeros.[]...new Array(3).fill(0)
) or the new
keyword (new (new Array(3).fill(0))
);Int8Array
or Uint8Array
, which are optimized for large numeric data.Keep in mind that these alternatives may have different performance characteristics, and some might be more suitable depending on the specific use case and requirements.