var a = [Array(10000)].map(_ => Math.random());
var ma = [a];
ma[5000] = 'string';
var ta = (new Float64Array(10000)).map(_ => Math.random());
a.reverse();
ta.reverse();
for (let i = 0; i < 10000; ++i)
a[i] = a[i] + 1;
for (let i = 0; i < 10000; ++i)
ta[i] = ta[i] + 1;
ma.reverse();
for (let i = 0; i < 10000; ++i)
ma[i] = ma[i] + 1;
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
array reverse | |
typedArray reverse | |
array i/o | |
typedArray i/o | |
mixed array reverse | |
mixed array i/o |
Test name | Executions per second |
---|---|
array reverse | 158037.7 Ops/sec |
typedArray reverse | 401878.6 Ops/sec |
array i/o | 39133.4 Ops/sec |
typedArray i/o | 39564.8 Ops/sec |
mixed array reverse | 90206.9 Ops/sec |
mixed array i/o | 9481.9 Ops/sec |
Overview
The provided JSON represents a JavaScript microbenchmark on MeasureThat.net. The benchmark compares the performance of three types of arrays: regular arrays, Float64Arrays, and mixed arrays (which are regular arrays with a mix of numeric and non-numeric values). The benchmark also tests the performance of array reversal and element update operations.
Benchmark Definition
The benchmark is defined in two parts:
a
with 10,000 random numbers, converting it to a mixed array ma
, and then reversing it.Individual Test Cases
The benchmark consists of six individual test cases:
a.reverse()
.ta.reverse()
.ma.reverse()
.Options Compared
The benchmark compares the performance of three types of arrays:
Pros and Cons of Different Approaches
Library
The Float64Array
is a built-in JavaScript array type that provides optimized performance for numerical computations. It is part of the Web APIs specification and is supported by most modern browsers.
Special JS Feature or Syntax
There are no special JavaScript features or syntax used in this benchmark.
Other Alternatives
If you want to compare the performance of regular arrays, Float64Arrays, and mixed arrays, you can also use other alternatives such as:
Keep in mind that these alternatives may have additional overhead or requirements compared to the built-in array types.