var data = Array(1000).fill(0).map((v, i) => i);
var copy = data.slice(0, 100);
var i = 0;
var copy = [];
do {
copy.push(data[i]);
i++;
} while(i < 100)
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
slice | |
do while |
Test name | Executions per second |
---|---|
slice | 17427784.0 Ops/sec |
do while | 226587.9 Ops/sec |
Let's dive into the world of JavaScript microbenchmarks!
What is being tested?
MeasureThat.net is testing two different approaches to create a copy of an array: slice()
and a custom implementation using a do-while
loop.
The test case uses an array of 1000 elements, which are initialized with incremental values starting from 0. This allows us to focus on the creation of the copy without worrying about data allocation or other external factors.
Options compared
We have two options being compared:
slice()
:do-while
loop implementation:slice()
method.Other considerations
When choosing between these two approaches, we should consider the following factors:
slice()
is sufficient and fast enough. However, if you need more control over the creation process or are dealing with extremely large arrays, the custom implementation might be worth considering.do-while
loop implementation might lead to higher memory allocation due to the creation of a new array.Library or special JS feature
In this case, we're not using any external libraries. However, if you were to use a library like Lodash, you might find its slice
function useful. But for simplicity, we'll focus on these two core methods.
Special JS features
There are no special JavaScript features being used in this benchmark beyond the standard syntax and built-in functions.
Now that we've explored the test case, let's take a look at some alternatives:
Array.from()
, Array.prototype.concat()
, or even using Buffer
for large arrays.Keep in mind that JavaScript is a dynamic language with many nuances and edge cases. When it comes to performance-critical code, it's essential to consider various factors, including hardware, software, and algorithmic optimization techniques.