Object.defineProperty vs normal (v52)

Revision 52 of this benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
Object.defineProperty
var newObj = {};

Object.defineProperty(newObj, "__ember_meta", {
  writable:    true,
  configurable: false,
  enumerable:  false,
  value: null
});
ready
normal
var newObj = {};
newObj.__ember_meta = null;
 
ready

Revisions

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