var size = 0xFF;
var buf = new ArrayBuffer(size);
var view = new DataView(buf);
var byte = new Uint8Array(buf);
var data = [];
for (let i = 0; i < size; i++) {
data[i] = 100*Math.random();
}
for (let i; i < size; i++) {
view.setUint8(i, data[i]);
}
const results = []
for (let i; i < size; i++) {
results.push(view.getUint8(i, data[i]));
}
for (let i; i < size; i++) {
byte[i] = data[i];
}
const results = [];
for (let i; i < size; i++) {
results.push(byte[i]);
}
byte.set(data, 0);
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
DataView | |
Uint8Array by byte | |
Uint8Array with set |
Test name | Executions per second |
---|---|
DataView | 6526921.5 Ops/sec |
Uint8Array by byte | 6428717.5 Ops/sec |
Uint8Array with set | 1978330.1 Ops/sec |
What is being tested?
MeasureThat.net is testing the performance of three different approaches for reading and writing data to a byte array in JavaScript:
DataView
API, which allows direct access to the memory address of an ArrayBuffer.byte[i] = data[i];
).set()
method of a Uint8Array, which sets multiple bytes at once.Options comparison
The three options are compared in terms of their performance, measured by the number of executions per second (ExecutionsPerSecond).
Pros and cons of each approach
DataView
can be faster because it accesses memory directly, whereas Uint8Array by byte
needs to iterate through each individual byte.DataView
allows direct access to specific data types (e.g., Uint16Array), which might be more efficient than using Uint8Array
.DataView
instance from an ArrayBuffer, which can add extra steps.DataView
.set()
method allows setting multiple bytes at once in a single operation.However, there is no clear "best" option that suits all cases. Ultimately, the choice of which one to use depends on your specific requirements and performance needs.
Other considerations
DataView
creates a new view into an existing ArrayBuffer, while Uint8Array by byte
and Uint8Array with set
create their own Arrays.DataView
supports a wide range of data types, whereas Uint8Array by byte
and Uint8Array with set
are limited to integers only.Libraries used
None mentioned in this case.
Special JS features or syntax
No special JavaScript feature or syntax is being utilized here.