prototype vs closures (v82)

Revision 82 of this benchmark created by ys on


Preparation HTML

<script>
  function Person(name) {
      this.name = name;
  }
  
  Person.prototype.get_name = function() {
      return this.name;
  };
  
  Person.prototype.set_name = function(name) {
      this.name = name;
  };
  
  get_name = function(self) {
return function() {
return self.name;}
}

  set_name = function(self) {
return function(val) {
self.name = val;}
}

  var person = function(name) {
          var self = {
           name: name,
           get_name: get_name(self),
           set_name: set_name(self)
          };
          return self;
      };
  
  var c = new Person('John');
  var b = person('John');
  
  ui.benchmarks[2].setup = function() {
      var b = new Person('John');
  };
  
  ui.benchmarks[3].setup = function() {
      var c = person('John');
  };
  
  ui.benchmarks[4].setup = ui.benchmarks[2].setup;
  ui.benchmarks[5].setup = ui.benchmarks[3].setup;
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
Prototype init
var c = new Person('John');
ready
Closure init
var b = person('John');
ready
Prototype read
c.get_name();
ready
Closure read
b.get_name();
ready
Prototype write
c.set_name('Jane');
ready
Closure write
b.set_name('Jane');
ready

Revisions

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