== vs ===

Benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
== equal
1 == 1;
ready
== equal w type
1 == '1';
ready
== inequal
1 == 2;
ready
== inequal w type
1 == '2';
ready
=== equal
1 === 1;
ready
=== equal w type
1 === '1';
ready
=== inequal
1 === 2;
ready
=== inequal w type
1 === '2';
ready

Revisions

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