Test name | Executions per second |
---|---|
OO-style | 446.1 Ops/sec |
ECS-style | 337.7 Ops/sec |
class Point {
constructor(x, y) {
this.x = x;
this.y = y;
this.health = 100;
}
tick() {
this.x += 2;
this.y += 2;
this.health -= 1;
}
}
var pointClasses = [];
var pointObjects = [];
for (let i = 0; i < 1000000; i++) {
pointClasses.push(new Point(0, 0));
pointObjects.push({ x: 0, y: 0 });
}
pointClasses.forEach((point) => {
point.tick();
point.tick();
});
pointObjects.forEach((point) => {
point.x += 2;
point.y += 2;
point.health -= 1;
point.x += 2;
point.y += 2;
point.health -= 1;
});