prototype vs closures (v90)

Revision 90 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 name;
  
  	return {
  		'get_name': function() {
  			return name;
  		},
  		'set_name': function(n) {
  			name = n;
  		}
  	};
  };
  
  var _p = new Person('John');
  var _c = 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

Revisions

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