js-null-undefined-equality (v3)

Revision 3 of this benchmark created on


Preparation HTML

<script>
  var x;
  var y;
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
nonstrict-null
var y = (x == null);
ready
strict-undefined
var y = (x === y);
ready
nonstrict-undefined
var y = (x == y);
ready

Revisions

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