const array = new Float32Array([1, 2, 3]);
const array = Float32Array.of(1, 2, 3);
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
new | |
.of() |
Test name | Executions per second |
---|---|
new | 7355355.0 Ops/sec |
.of() | 12192884.0 Ops/sec |
I'll explain the JavaScript microbenchmark being tested on MeasureThat.net.
The benchmark is designed to compare two approaches for creating TypedArray objects: using the new
keyword (new Float32Array([1, 2, 3])
) and using the .of()
method (Float32Array.of(1, 2, 3)
).
New Approach (using new
)
new
keyword is used to create a new instance of the TypedArray constructor. In this case, Float32Array
.TypedArray
constructor is used to initialize the array with values.Pros:
.of()
method.Cons:
.of()
.new
can create a temporary object that's then wrapped in the final TypedArray, which can be slower).Of Approach (.of())
.of()
method is used to create a new TypedArray from an array-like object or other iterable.Pros:
new
keyword.new
, especially for larger arrays.Cons:
.of()
method.Library Used
The Float32Array
and TypedArray
constructors are part of the Web API (ECMAScript standard), which means they're native to JavaScript.
Special JS Feature/ Syntax
There's no special JavaScript feature or syntax used in this benchmark, other than using TypedArrays, which is a modern web development concept.
Other Alternatives
If you need to create TypedArray objects in JavaScript, the .of()
method is generally considered more efficient and concise. However, if you're working with older browsers that don't support .of()
, or if you need more control over the creation process, using the new
keyword might be a better option.
In general, for most use cases, using the .of()
method is the recommended approach, as it provides better performance and conciseness.