// what is the output of the following code:
const object = {
message: 'Hello, World!',
logMessage() {
console.log(this.message);
}
};
setTimeout(object.logMessage, 1000);
Подробнее здесь: https://stackoverflow.com/questions/797 ... a-normal-f
Мобильная версия