const obj = {
name: 'something',
t: function() {
console.log(this)
},
ta: () => {
console.log(this)
}
}
const parentObj = {
name: 'cheeteh',
obj [https://mobdro.bio/][1]
}
parentObj.obj.t() parentObj.obj.ta() https://mobdro.bio/
How is parentObj.obj.ta()
the global scope and not the parentObj ?
can somebody help me?
[1]: