Test name | Executions per second |
---|---|
Read from data property | 26632470.0 Ops/sec |
Write to data property | 26598838.0 Ops/sec |
Read from accessor method | 26519682.0 Ops/sec |
Write to mutator method | 8889552.0 Ops/sec |
Read from object literal property | 21108186.0 Ops/sec |
Write to object literal property | 6191070.5 Ops/sec |
Read from object literal property on prototype | 27012620.0 Ops/sec |
Write to object literal property on prototype | 8876211.0 Ops/sec |
const foo = 5
var data = {
property: foo
};
var method = {
getProperty: function() {
return foo;
},
setProperty: function(value) {
property = value;
}
};
var objectLiteralAccessor = {
get property() {
return foo;
},
set property(value) {
property = value;
}
};
function Class() {
}
Class.prototype = {
get property() {
return foo;
},
set property(value) {
property = value;
}
};
var prototypeAccessor = new Class();
var value = data.property;
data.property = true;
var value = method.getProperty();
method.setProperty(true);
var value = objectLiteralAccessor.property;
objectLiteralAccessor.property = true;
var value = prototypeAccessor.property;
prototypeAccessor.property = true;