Sobes.tech
Junior — Senior

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

livecode

Task condition

What output will appear in the console after executing the following code?

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

obj.say()();