Refers to the calling object of a property.
Syntax
this[.propertyName]
Example
function Dog(breed) {
this.breed = breed;
}
Dog.prototype.getBreed = function() {
return this.breed;
}
var foo = new Dog('Lab');
alert(foo.getBreed()); //Alerts "Lab".