Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36
Chrome 98
Windows
Desktop
3 years ago
Test name Executions per second
push 1075250176.0 Ops/sec
destructuration 1088068736.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];
    }