publicattrvsgetter

JavaScript performance comparison

Test case created

Preparation code

 
<script>
Benchmark.prototype.setup = function() {
    var a = {
      b: 10
    }
   
    var b = {
      get b() {
        return 10;
      }
    }
   
    var c = {
      getB: function() {
        return 10;
      }
    }
};
</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
attribute
console.debug(a.b);
pending…
getter
console.debug(b.b);
pending…
func
console.debug(c.getB());
pending…

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

Compare results of other browsers

0 comments

Add a comment