quicktest

Benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
1
var array = []
var count = 1000000
var i = 0
for(; i < count;)
{
        array.push(i)
        i++
};
ready
2
var array = []
var count = 1000000
var i = 0
while ( i < count)
{
        array.push(i)
        i++
}
ready

Revisions

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