Push vs length (v10)

Revision 10 of this benchmark created by Jasper 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
push multiple
var myArray = [];
myArray.push('foo', 'bar');
ready

Revisions

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