let c = 0
const testArray = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 ]
const newArray = []
for (const i of testArray) {
newArray[c++] = i
}
const testArray = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 ]
const newArray = []
for (const i in testArray) {
newArray[i] = testArray[i]
}
const testArray = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 ]
const length = testArray.length
const newArray = []
for (let i = 0; i < length; i++) {
newArray[i] = testArray[i]
}
const testArray = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 ]
const newArray = []
for (let i = 0; i < testArray.length; i++) {
newArray[i] = testArray[i]
}
const testArray = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 ]
let i = testArray.length
const newArray = []
while (~--i) {
newArray[i] = testArray[i]
}
const testArray = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 ]
let i = -1
const newArray = []
while (i++ < testArray.length) {
newArray[i] = testArray[i]
}
const testArray = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 ]
const newArray = testArray.slice()
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
for i of | |
for i in | |
for i length first | |
for i length every | |
while crazy | |
while boring | |
slice |
Test name | Executions per second |
---|---|
for i of | 38362428.0 Ops/sec |
for i in | 2054274.6 Ops/sec |
for i length first | 46811652.0 Ops/sec |
for i length every | 47680224.0 Ops/sec |
while crazy | 40141140.0 Ops/sec |
while boring | 39310488.0 Ops/sec |
slice | 200015872.0 Ops/sec |
Let's dive into the world of JavaScript array copying benchmarks.
The provided JSON represents a benchmarking framework where users can create and run JavaScript microbenchmarks. The benchmark being tested is related to copying an array, with various approaches compared.
What are we testing?
We're testing different ways to copy an array in JavaScript. The array contains 10 elements, and the goal is to determine which approach is the fastest.
Options compared:
There are four main approaches compared:
for
loop with an incrementing index (c++ = i
) to iterate over the array.in
keyword: Using the in
keyword to access array elements.for
loop: Using a for
loop that iterates from 0 to the length of the array.for
loop that iterates over each element in the array.while
loop with a decrementing index (--i
) to iterate over the array.slice()
method to create a new array.Pros and Cons of each approach:
in
keyword:for
loop:Results:
The benchmark results show that the following approaches are the fastest:
for
loop (46811652
executions per second)40141140
executions per second)39310488
executions per second)Note that these results may vary depending on the specific implementation, browser, and environment.
Conclusion:
The benchmark results suggest that the length-based for
loop is the fastest approach for copying an array in JavaScript. This method provides a good balance between efficiency and predictability. However, it's essential to consider the specific use case and potential trade-offs when choosing an approach.