<!--your preparation HTML code goes here-->
const arr1 = new Float64Array([1,2,3,4,5,6,7,8,9]);
const arr2 = new Float64Array([1,2,3,4,5,6,7,8,9]);
arr1.set(arr2)
[
arr1[0], arr1[1], arr1[2],
arr1[3], arr1[4], arr1[5],
arr1[6], arr1[7], arr1[8],
]=arr2
arr1[0] = arr2[0];
arr1[1] = arr2[1];
arr1[2] = arr2[2];
arr1[3] = arr2[3];
arr1[4] = arr2[4];
arr1[5] = arr2[5];
arr1[6] = arr2[6];
arr1[7] = arr2[7];
arr1[8] = arr2[8];
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
set | |
block | |
per item |
Test name | Executions per second |
---|---|
set | 39651528.0 Ops/sec |
block | 25414050.0 Ops/sec |
per item | 94770600.0 Ops/sec |
The benchmark "array copy set vs block vs per item" is designed to compare the performance of three different methods for copying elements from one Float64Array
to another in JavaScript. The test focuses on how efficiently different assignment techniques can handle this task.
Set Method (arr1.set(arr2)
):
set
method provided by TypedArray
(in this case, Float64Array
). This method copies the entire contents of one array (arr2
) into another (arr1
) in a single operation.Block Assignment:
arr2
to arr1
using a single line for multiple assignments.set
method, especially if the JavaScript engine cannot optimize it effectively.set
method.Per Item Assignment:
arr2
to arr1
.Based on the latest benchmark results:
set
method comes in second, which is still quite efficient and demonstrates good performance.set
is generally recommended when maximum performance and readability are desired.In summary, this benchmark illustrates the performance landscape of different array copying techniques in JavaScript, notably how the language's engines can optimize certain methods, and offers insights into their practical use within real-world applications.