Removing items from array (v16)

Revision 16 of this benchmark created 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
Filter
a.filter(function(el) {
   return el < 10; 
});
ready

Revisions

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