Tests:
  • for i of

    AخA
     
    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
    }
  • for i in

     
    const testArray = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 ]
    const newArray = []
    for (const i in testArray) {
      newArray[i] = testArray[i]
    }
  • for i length first

     
    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]
    }
  • for i length every

    x
     
    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]
    }
  • while crazy

     
    const testArray = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 ]
    let i = testArray.length
    const newArray = []
    while (~--i) {
      newArray[i] = testArray[i]
    }
  • while boring

     
    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]
    }
  • slice

     
    const testArray = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 ]
    const newArray = testArray.slice()
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    for i of
    for i in
    for i length first
    for i length every
    while crazy
    while boring
    slice

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36
Chrome 104 on Windows
View result in a separate tab
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