This
JavaScript
//'use strict'
this.table = 'window table';
const cleanTable = function() {
console.log(`cleaning ${this.table}`);
}
this.garage = {
table: 'garage table',
cleanTable() {
console.log(`cleaning ${this.table}`);
}
};
console.log(garage.table);
let myRoom = {
table: 'my table',
cleanTable() {
console.log(`cleaning ${this.table}`);
}
};
console.log(myRoom.table);
myRoom.cleanTable();
this.garage.cleanTable();
cleanTable();