Removing items from array (v9)

Revision 9 of this benchmark created by Nick Williams on


Setup

var a = [], i = 0;
    for (; i < 1000; i++)
        a[i] = Math.floor(Math.random() * 10);

Test runner

Ready to run.

Testing in
TestOps/sec
Array.splice
var b = a.slice();
for (var i = b.length; i--;)
    if (b === 5) b.splice(i, 1);
ready
Parsing array
var b = a.slice();
for (var i = 0, j = 0, l = b.length; i < l; i++)
    if (b !== 5) b[j++] = b[i];
b.length = j;
ready
New array
var b = a.slice(), c = [];
for (var i = 0, l = b.length; i < l; i++)
    if (b !== 5) c.push(b[i]);

b=c;
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.