setter vs method

JavaScript performance comparison

Test case created by Devon Govett

Preparation code

 
<script>
Benchmark.prototype.setup = function() {
    var obj = {};
   
    obj.setProp = function(val) {
      obj._prop = val;
    }
   
    var obj2 = {};
    Object.defineProperty(obj2, 'prop', {
      set: function(val) {
        obj2._prop = val;
      }
    });
};
</script>

Test runner

Warning! For accurate results, please disable Firebug before running the tests. (Why?)

Java applet disabled.

Testing in unknown unknown
Test Ops/sec
method
obj.setProp('foo');
pending…
setter
obj2.prop = 'foo';
pending…

Compare results of other browsers

Revisions

You can edit these tests or add even more tests to this page by appending /edit to the URL. Here’s a list of current revisions for this page:

0 comments

Add a comment