teste012013

Benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
++1
for(i = 0; i < 10; ++i) {
    console.log(i);
}
ready
1++
for(i = 0; i < 10; i++) {
    console.log(i);
}
ready
!++1
for(i = 0; i < 10;) {
    console.log(++i);
}
ready
++1!
for(i = 0; i < 10;) {
    console.log(i++);
}
ready

Revisions

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