Script Preparation code:
AخA
 
var randomArray = Array.from({ length: 1000 }, () => Math.floor(Math.random() * 256))
var randomArrayBuffer = new Uint8Array(randomArray)
Tests:
  • new Array()

     
    new Array(...randomArray)
  • Array.from()

     
    Array.from(randomArray)
  • new Array() with ArrayBuffer

     
    new Array(...randomArrayBuffer)
  • Array.from() with ArrayBuffer

     
    Array.from(randomArrayBuffer)
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    new Array()
    Array.from()
    new Array() with ArrayBuffer
    Array.from() with ArrayBuffer

    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/108.0.0.0 Safari/537.36 Edg/108.0.1462.76
Chrome 108 on Windows
View result in a separate tab
Test name Executions per second
new Array() 498119.8 Ops/sec
Array.from() 1134377.1 Ops/sec
new Array() with ArrayBuffer 40901.4 Ops/sec
Array.from() with ArrayBuffer 69613.0 Ops/sec