testpaul

Benchmark created by paul on


Preparation HTML

<div id="result"></div>

Test runner

Ready to run.

Testing in
TestOps/sec
a
for (var i = 0; i < 100; i += 1) {
document.getElementById("result").innerHTML += i + ", ";
}
ready
b
var i, content = "";
for (i = 0; i < 100; i += 1) {
content += i + ",";
}
document.getElementById("result").innerHTML += content;
ready

Revisions

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