Sobes.tech
Back to tasks
Junior — Senior
34

Контекст this в функции, возвращаемой методом объекта

Get help with live coding in real time with Sobes Copilot
Task condition

Какой вывод появится в консоли после выполнения следующего кода?

const obj = {
    a: 1,
    say() {
        return function() {
            console.log(this.a);
        }
    }
}

obj.say()();