this-keyword
JavaScript
this.table = "Window Table";
this.garage = {
table: "garage table",
cleaningTable: function(){
document.write("cleaning " + this.table);
}
};
var johnsRoom = {
table: "johns table",
cleaningTable: function(){
document.write("cleaning " + this.table);
}
}
document.write(this.garage.cleaningTable());