prototype vs closures (v43)

Revision 43 of this benchmark created by nomiadcode on


Setup

function Person(name) {
    this.name = name;
  }
  
  Person.prototype.get_name = function() {
    return this.name;
  };
  
  Person.prototype.set_name = function(name) {
    this.name = name;
  };
  
  var person = function(name) {
    var p = {
      name: name
    };
  
    return {
      'get_name': function() {
        return p.name;
      },
      'set_name': function(name) {
        p.name = name;
      }
    };
  };
  
  function c_Person(name){
    var name;
    
    this.get_name=function(){return name;}
    this.set_name=function(val){name=val;}
  }
  
  var o_person = {
    name: null,
    get_name: function() {
      return name;
    },
    set_name: function(name) {
      this.name = name;
    }
  };
  
  var _p = new Person('John');
  var _c = person('John');
  var _o = o_person;
  _o.set_name('John');
  
  var c_person=new c_Person("Frank");

Test runner

Ready to run.

Testing in
TestOps/sec
Prototype init
var p = new Person('John');
ready
Closure init
var c = person('John');
ready
Prototype read
ready
Closure read
ready
Prototype write
ready
Closure write
ready
Object read
ready
Object write
ready
Closure Person init
var p=new c_Person("Frank");
ready
Closure Person write
ready
Closure Person read
ready

Revisions

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