Test name | Executions per second |
---|---|
this | 41151.7 Ops/sec |
that | 43686.3 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();