loops

JavaScript performance comparison

Test case created

Preparation code

<script>
  Benchmark.prototype.setup = function() {
    var doStuff = function(number) {
        return number + number;
        };
  };
</script>

Test runner

Warning! For accurate results, please disable Firebug before running the tests. (Why?)

Java applet disabled.

Testing in unknown unknown
Test Ops/sec
Forward
for (i = 0; i < 100000; i++) {
  doStuff(i);
}
pending…
Backward
for (i = 100000; i > 0; i--) {
  doStuff(i);
}
pending…

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

Compare results of other browsers

0 comments

Add a comment