Object.defineProperty vs __defineGetter__ vs normal (v77)

Revision 77 of this benchmark created by Ryan Cannon on


Description

Test different access method to an object property

Preparation HTML

<script>
  var obj, acc, funct;
  
  funct = {
   get: function() {
    return this._x
   },
   set: function(value) {
    this._x = value
   }
  }
</script>

Setup

obj = {
     _x: 0
    };
    acc = 0;

Test runner

Ready to run.

Testing in
TestOps/sec
Object.defineProperty
Object.defineProperty(obj, "x", {
 get: funct['get'],
 set: funct['set']
})

for (var i = 0; i < 1000; i++) {
 obj.x = i;
 acc += obj.x;
}
ready
__defineGetter__
obj.__defineGetter__('x', funct['get']);
obj.__defineSetter__('x', funct['set']);

for (var i = 0; i < 1000; i++) {
 obj.x = i;
 acc += obj.x;
}
ready
Normal
for (var i = 0; i < 1000; i++) {
 obj._x = i;
 acc += obj._x;
}
ready
Prototype
obj.prototype = {
 get x() {
  return this._x;
 }, set x(value) {
  this._x = value;
 }
}

for (var i = 0; i < 1000; i++) {
 obj.x = i;
 acc += obj.x;
}
ready
Setter
obj.setX = function(value) {
 this._x = value;
}

for (var i = 0; i < 1000; i++) {
 obj.setX(i);
 acc += obj._x;
}
ready
Overloaded
obj.x = function() {
  if (arguments.length > 0) {
    this._x = arguments[0];
  }
  return this._x;
}

for (var i = 0; i < 1000; i++) {
 obj.x(i);
 acc += obj.x();
}
ready

Revisions

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