hasClass-vs-is (v37)

Revision 37 of this benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
if
var i=5;
if (i==5) i=6; else i=7;
ready
if2
var i=5;
i==5 ? i=6 : i=7;
ready
if3
var i=5;
if (i==5) {i=6;} else {i=7;}
ready

Revisions

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