prototype vs closures (v22)

Revision 22 of this benchmark created 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;
  		}
  	};
  };
  
  var person2 = function(name) {
      this.get_name = function(){
          return name;
      };
      this.set_name = function(value)
      {
          name = value;
      };
  };
  
  var _p = new Person('John');
  var _c = person('John');
  var _c2 = new person('John');

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
_p.get_name();
ready
Closure read
_c.get_name();
ready
Prototype write
_p.set_name('Jane');
ready
Closure write
_c.set_name('Jane');
ready
Closure init 2
var c2 = new person('John');
ready
Closure read 2
_c2.get_name();
ready
Closure write 2
_c2.set_name('Jane');
ready

Revisions

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