Test name | Executions per second |
---|---|
this | 23910.6 Ops/sec |
that | 23426.8 Ops/sec |
function Monster()
{
this.x = 100;
this.y = 100;
console.log("Monster created at " + this.x + " / " + this.y + "!");
}
function Monster2()
{
var that = this;
that.x = 100;
that.y = 100;
console.log("Monster created at " + that.x + " / " + that.y + "!");
}
new Monster();
new Monster2();