Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36
Chrome 105
Windows
Desktop
2 years ago
Test name Executions per second
push 967133760.0 Ops/sec
destructuration 971195968.0 Ops/sec
Tests:
  • push

    x
     
    const arr = [];
    for(let i = 0; i >= 10000; i++) {
      arr.push(1);
    }
  • destructuration

     
    let arr = [];
    for(let i = 0; i >= 10000; i++) {
      arr = [...arr, 1];
    }