Push vs length

Benchmark created by AlienWebguy on


Test runner

Ready to run.

Testing in
TestOps/sec
length
var myArray = [];
myArray[myArray.length] = 'foo';
myArray[myArray.length] = 'bar';
ready
push
var myArray = [];
myArray.push('foo');
myArray.push('bar');
ready

Revisions

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