looptest

JavaScript performance comparison

Revision 2 of this test case created

Preparation code

 
<script>
Benchmark.prototype.setup = function() {
    array = [];
    for(var i=0; i<100; i++){
    array.push(i);
    }
   
    function isVisible(){
    return true;
    }
    function context(){
    return true
    }
};
</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
while
var i = array.length
        while(i--){
            b = array[i];
            true && isVisible() && context()
        }
pending…
for
        for(var k=0, le = array.length, b; k < le; ++k){
            b = array[k];
           
            if(true && isVisible() && context()){
true
               
            }
        }
pending…
while optimized
var i = array.length
        while(i-- && (b = array[i]) && true && isVisible() && context());
pending…
for loop down
        for(var k = array.length, b; k--;){
            b = array[k];
           
            if(true && isVisible() && context()){
true
               
            }
        }
pending…
for length optiomized
        for(var k = array.length, b; k--;){
            b = array[k];
           
            true && isVisible() && context()

        }
pending…

Compare results of other browsers

Revisions

You can edit these tests or add even more tests to this page by appending /edit to the URL. Here’s a list of current revisions for this page:

0 comments

Add a comment