cache-length-no-cache

Benchmark created on


Preparation HTML

<script>
function test1( nodes ) {
    var sum = 0;
    var len = nodes.length;
    for (var i = 0; i < len; i++) {
        sum += nodes[i];
    }
    return sum;
}

function test2( nodes ) {
    var sum = 0;
    for (var i = 0; i < nodes.length; i++) {
        sum += nodes[i];
    }
    return sum;
}

var nodes = [1,2,3,4,5,6,7];

var l = 1e6;
while(l--) {
    test1(nodes); test2(nodes);
}


</script>

Test runner

Ready to run.

Testing in
TestOps/sec
cache
if( test1(nodes) !== 28 ) {
  die();
}
ready
no cache
if( test2(nodes) !== 28 ) {
  die();
}
ready

Revisions

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