a.
Size: a a a
a.
a.
BI
АТ
OS
АТ
АТ
OS
ТК
OS
ТК
V
V
const obj = {
a1() {
// this === obj
function b1() {
// this === undefined
function c1() {
// this === undefined
}
c1();
}
b1();
},
a2() {
// this === obj
const b2 = () => {
// this === obj
function c2() {
// this === undefined
}
c2();
};
b2();
},
};
ТК
ТК
const obj = {
a1() {
// this === obj
function b1() {
// this === undefined
function c1() {
// this === undefined
}
c1();
}
b1();
},
a2() {
// this === obj
const b2 = () => {
// this === obj
function c2() {
// this === undefined
}
c2();
};
b2();
},
};
V
ТК
V
ТК
V