Script Preparation code:
AخA
 
var M = 1000,
    N = 500;
Tests:
  • a

     
    const arr = [];
    for(let i = 0; i < M; i += 1) {
      arr[i] = [];
      for(let j = 0; j < N; j += 1)
        arr[i][j] = Math.random() * 2 - 1;
    }
    return arr;
  • b

     
    const arr = Array(M).fill(0).map(a => Array(N).fill(0).map(b => Math.random() * 2 - 1));
    return arr;
  • c

     
    const arr = Array.from({ length: M }, () => Array.from({ length: N }, () => Math.random() * 2 - 1));
    return arr;
  • d

     
    const arr = [...Array(M)].map(a => [...Array(N)].map(b => Math.random() * 2 - 1));
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    a
    b
    c
    d

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36
Chrome 116 on Windows
View result in a separate tab
Test name Executions per second
a 13.3 Ops/sec
b 20.1 Ops/sec
c 13.7 Ops/sec
d 20.2 Ops/sec