class Es6Point {
constructor(x, y) {
this.x = x;
this.y = y;
}
add(point) {
return new Es6Point(this.x + point.x, this.y + point.y);
}
sub(point) {
return new Es6Point(this.x - point.x, this.y - point.y);
}
}
const p1 = new Es6Point(10, 10);
const p2 = new Es6Point(10, -10);
const sum = p1.add(p2);
const dif = p1.sub(p2);
function ProtoPoint(x, y) {
this.x = x;
this.y = y;
}
ProtoPoint.prototype.add = function(point) {
return new ProtoPoint(this.x + point.x, this.y + point.y);
}
ProtoPoint.prototype.sub = function(point) {
return new ProtoPoint(this.x - point.x, this.y - point.y);
}
const p1 = new ProtoPoint(10, 10);
const p2 = new ProtoPoint(10, -10);
const sum = p1.add(p2);
const dif = p1.sub(p2);
const ModulePoint = (x, y) => ({
add: point => ModulePoint(x + point.x, y + point.y),
sub: point => ModulePoint(x - point.x, y - point.y)
})
const p1 = ModulePoint(10, 10)
const p2 = ModulePoint(10, -10)
const sum = p1.add(p2)
const dif = p1.sub(p2)
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Es6 Class | |
Prototype | |
Module |
Test name | Executions per second |
---|---|
Es6 Class | 1096965.1 Ops/sec |
Prototype | 1220574.6 Ops/sec |
Module | 82222896.0 Ops/sec |
The benchmark provided tests the performance of three different object-oriented programming approaches in JavaScript: ES6 Classes, Prototype-Based Inheritance, and Module Pattern. Each of these paradigms defines a method for creating and manipulating objects, particularly in terms of a Point
object that performs addition and subtraction operations.
ES6 Classes (Es6 Class
):
class Es6Point {
constructor(x, y) {
this.x = x;
this.y = y;
}
add(point) {...}
sub(point) {...}
}
this
context in methods.Prototype-Based Inheritance (Prototype
):
function ProtoPoint(x, y) {...}
ProtoPoint.prototype.add = function(point) {...};
this
.Module Pattern (Module
):
const ModulePoint = (x, y) => ({ add: point => ... , sub: point => ... });
In the benchmark results generated, the performance of each method is measured in terms of "Executions Per Second". Here are the results:
When selecting an approach, engineers should consider not only performance but also code readability, maintainability, and team familiarity with the patterns in use.