concat vs push.apply (v21)

Revision 21 of this benchmark created by 54yuri on


Setup

var  A = [];
    
    for (var i = 0; i < 42; ++i) {
      A[i] = {};
    }

Test runner

Ready to run.

Testing in
TestOps/sec
concat
var B = A.slice(0); // clone of A
function test() {
 B = B.concat(arguments);
}

for (i = 0; i < 100; ++i) {
  test(1);
}
ready
push.apply
var B = A.slice(0); // clone of A
function test() {
 B.push.apply(B, arguments);
}

for (i = 0; i < 100; ++i) {
  test(1);
}
ready
Array.prototype.push.apply
var B = A.slice(0); // clone of B
function test() {
 Array.prototype.push.apply(B, arguments);
}

for (i = 0; i < 10; ++i) {
  test(1,2,3,4,5,6,7,8,9,10);
}
ready
Array.prototype.push cached
var cachedPush = Array.prototype.push;
var B = A.slice(0); // clone of A
function test() {
 cachedPush.apply(B, arguments);
}

for (i = 0; i < 10; ++i) {
  test(1,2,3,4,5,6,7,8,9,10);
}
ready
concat
var B = A.slice(0); // clone of A
function test() {
 B = B.concat(arguments);
}

for (i = 0; i < 10; ++i) {
  test(1,2,3,4,5,6,7,8,9,10);
}
ready

Revisions

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