property versus function

JavaScript performance comparison

Test case created by naholyr

Preparation code

 
<script>
Benchmark.prototype.setup = function() {
    var o1 = Object.create({get hello() { return "hello"; }});
   
    var o2 = {"hello": function() { return "hello"; }};
   
    if (o1.hello != o2.hello()) {
      throw new Error('Impossibru!!');
    }
};
</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
property
o1.hello
pending…
method
o2.hello()
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