Triple equals vs Double equals (v13)

Revision 13 of this benchmark created by jajajaj on


Description

Check performance of === against ==.

Preparation HTML

<script>
var TYPE = {
  ATYPE: "123",
  CTYPE: null
};
var a = TYPE.ATYPE;
var c = TYPE.CTYPE;
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
===
a === c;
ready
==
a == c;
ready

Revisions

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