Comparison performance test

Benchmark created by Harish on


Description

comparison performance test of comparing against string to comparing against booleans

Test runner

Ready to run.

Testing in
TestOps/sec
comparing strings
var value = "test";
if (value === "test") return true;
ready
comparing against boolean
var t = true;
if(t === true) return true;
ready

Revisions

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