class Point {
constructor(x, y){
this.x = x;
this.y = y;
}
add(point){
return new Point(this.x + point.x, this.y + point.y);
}
sub(point){
return new Point(this.x - point.x, this.y - point.y);
}
}
var p1 = new Point(10, 10);
var p2 = new Point(10, -10);
var sum = p1.add(p2);
var dif = p1.sub(p2);
function Point(x, y){
this.x = x;
this.y = y;
}
Point.prototype.add = function(point){
return new Point(this.x + point.x, this.y + point.y);
}
Point.prototype.sub = function(point){
return new Point(this.x - point.x, this.y - point.y);
}
var p1 = new Point(10, 10);
var p2 = new Point(10, -10);
var sum = p1.add(p2);
var dif = p1.sub(p2);
function Point(x, y){
return {
x,
y,
add: (point)=>Point(this.x + point.x, this.y + point.y),
sub: (point)=>Point(this.x - point.x, this.y - point.y)
}
}
var p1 = Point(10, 10);
var p2 = Point(10, -10);
var sum = p1.add(p2);
var dif = p1.sub(p2);
const point = (x, y) => ({ x, y });
const add = (a, b) => ({ x: a.x + b.x, y: a.y + b.y });
const sub = (a, b) => ({ x: a.x - b.x, y: a.y - b.y });
var p1 = point(10, 10);
var p2 = point(10, -10);
var sum = add(p1, p2);
var dif = sub(p1, p2);
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
ES6 Class | |
Function Prototype | |
Object Literal | |
Object & Functions |
Test name | Executions per second |
---|---|
ES6 Class | 552347.7 Ops/sec |
Function Prototype | 335312.1 Ops/sec |
Object Literal | 1600972.9 Ops/sec |
Object & Functions | 1139481728.0 Ops/sec |
Let's dive into the benchmark and explore what's being tested.
Benchmark Overview
The benchmark measures the performance of four different techniques for constructing class objects in JavaScript:
class
keyword to define a class.Options Comparison
Each technique has its pros and cons:
Library and Syntax
In this benchmark, no libraries are used. The tests focus solely on the syntax and performance differences between these four techniques.
However, if we were to expand this benchmark to include libraries or additional features, some considerations might come into play:
Special JS Features
No special JavaScript features or syntax are explicitly being tested in this benchmark. The focus remains on the four techniques for constructing class objects.
Alternatives
Other alternatives for constructing class objects in JavaScript include:
Keep in mind that this benchmark primarily focuses on the performance differences between these four techniques, rather than exploring alternative approaches or libraries.