test

Benchmark created by Test on


Description

tet

Preparation HTML

<script>
  var i = 0,
      j = 100;
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
Document write line
for (i = 0; i < 100; i++) {
  for (j = i; j > 0; j--) {
    document.writeln(i + "x" + j);
  }
}
ready
Debug write line
for (i = 0; i < 100; i++) {
  for (j = i; j > 0; j--) {
    console.log(i + "x" + j);
  }
}
ready

Revisions

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