var array = new Array(100000)
let x
for (let i=0; i<array.length; i++) {
x = array[i]
}
var typedArray = new Uint8Array(100000)
let x
for (let i=0; i<typedArray.length; i++) {
x = typedArray[i]
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Array write | |
TypedArray write |
Test name | Executions per second |
---|---|
Array write | 15593.7 Ops/sec |
TypedArray write | 15209.2 Ops/sec |
The provided benchmark compares the performance of reading data from two types of arrays in JavaScript: standard JavaScript arrays (Array
) and typed arrays (TypedArray
, specifically Uint8Array
).
Array:
new Array(100000)
. x
.TypedArray:
new Uint8Array(100000)
.x
.Pros:
map
, filter
, etc.).Cons:
Pros:
Cons:
Uint8Array
stores unsigned 8-bit integers only).Performance Metrics: The benchmark results show the number of executions per second for each type of array when reading data.
Use Cases:
In conclusion, the choice between a standard array and a typed array depends on the specific use case, data types involved, and performance requirements. Each has its benefits and drawbacks, making your task a matter of assessing the context in which they will be applied.