class PointC {
constructor(x, y){
this.x = x;
this.y = y;
}
add(value){
return this.x + this.y + value;
}
}
//---------------------------------------
function PointP(x, y){
this.x = x;
this.y = y;
}
PointP.prototype.add = function(value){
return this.x + this.y + value;
}
//---------------------------------------
function PointO(x, y){
return {
x,
y,
add: value => this.x + this.y + value
}
}
//---------------------------------------
var PointS = {
x: 10,
y: 10
}
var Add = (point, value) => point.x + point.y + value;
var p1C = new PointC(10, 10);
var p1P = new PointP(10, 10);
var p1O = new PointO(10, 10);
var sum = p1C.add(10000);
var sum = p1P.add(10000);
var sum = p1O.add(10000);
var sum = Add(PointS, 10000);
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
ES6 Class | |
Function Prototype | |
Object Literal | |
Object 2 |
Test name | Executions per second |
---|---|
ES6 Class | 9497850.0 Ops/sec |
Function Prototype | 9330962.0 Ops/sec |
Object Literal | 7778546.0 Ops/sec |
Object 2 | 5129016.5 Ops/sec |
Benchmark Explanation
MeasureThat.net is testing the performance and memory usage of three different approaches to accessing class objects in JavaScript:
class
keyword to define a class, and then creates an instance of that class using the new
keyword.add
method as a property of that object.Options Compared
The benchmark is comparing the performance and memory usage of these three approaches for a simple addition operation. The test cases are designed to exercise each approach in different ways, such as:
add
methodadd
method directly on the class objectPros and Cons
Here are some pros and cons of each approach:
Library Used
None are explicitly mentioned in this benchmark. However, it's worth noting that some libraries may use these approaches internally, such as React or Angular for class-based components, or functions with prototype methods.
Special JavaScript Features/Syntax
The benchmark uses ES6 features such as:
class PointC { ... }
)var PointO = { ... }
)(point, value) => point.x + point.y + value
)However, these features are not specific to the comparison being made, and could be used in other contexts.
Other Alternatives
Some alternative approaches to accessing class objects or defining methods on objects include:
Object.defineProperty
methodHowever, these alternatives are not explicitly mentioned in this benchmark, and may not be relevant to the specific use case being tested.