Array direct assignment vs push (v30)

Revision 30 of this benchmark created on


Setup

var array = [];

Test runner

Ready to run.

Testing in
TestOps/sec
Direct assignment
for(var i = 0; i < 100; i++)
{
  array[i] = "test";
}
ready
Push
for(var i = 0; i < 100; i++)
{
  array.push("test");
}
ready
Direct assignment with pre-allocate
array.length = 100;
for(var i = 0; i < 100; i++)
{
  array[i] = "test";
}
ready

Revisions

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