this关键字
this关键字是函数中一个特殊的只读字段 const o = { name: 'bob', speak() { console.log(我叫${this.name}) } } o.speak()...
JavaScript
2020-03-01
841
0