Push vs length (v24)

Revision 24 of this benchmark created on


Test runner

Ready to run.

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

Revisions

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