87,997
社区成员




let a = {
test2: function () {
console.log('this of test2', this)
},
test3: () => {
console.log('this of test3', this)
}
}
a.test2()
a.test3()