object-freeze (v14)

Revision 14 of this benchmark created by James on


Preparation HTML

<script>
  var hot = {
    x: 0,
    y: 0
  };
  var cold = Object.seal(Object.create({}, {
    x: {
      value: 0
    },
    y: {
      value: 0
    }
  }));
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
hot
hot.x === hot.y;
ready
cold
cold.x === cold.y;
ready

Revisions

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