zxcdeswag

JavaScript performance comparison

Test case created

Test runner

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

Java applet disabled.

Testing in unknown unknown
Test Ops/sec
a
var j = 0;
for(i=1;i<1000000;i++)
{
   
    if(i%3===0 || i%5===0){
        j= j+i;
    }
   
}
console.log(j);
pending…
b
var s=0,i=1e6;while(i--){s+=i%3==0||i%5==0?i:0}console.log(s)
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