Array direct assignment vs push (v83)

Revision 83 of this benchmark created on


Setup

var array = [];

Test runner

Ready to run.

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

Revisions

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