Script Preparation code:
AخA
 
var alphabets = [...'abcdefghijklmnopqrstuvwxyz'];
var arr = alphabets.map(cur => ({ id: cur, value: cur }));
var arrA = [...arr, ...arr, ...arr, ...arr, ...arr];
var arrB = arr.reverse();
Tests:
  • delete

     
    arrA.forEach(cur => {
      arrB.every((val, idx) => {
        if (cur.id === val.id) {
          delete arrB[idx];
          return false;
        }
        return true;
      });
    });
  • splice

     
    arrA.forEach(cur => {
      arrB.every((val, idx) => {
        if (cur.id === val.id) {
          arrB = arrB.splice(idx, 1);
          return false;
        }
        return true;
      });
    });
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    delete
    splice

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 4 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36
Chrome 86 on Windows
View result in a separate tab
Test name Executions per second
delete 59250.5 Ops/sec
splice 59744.9 Ops/sec