编辑代码
JS代码
14.16.1
10.16.0
运行
let obj={ a:
100
,
log
(){ a=
200
console.
log
(
this
.a) } } obj.
log
()
//100
let {
log
} = obj
log
()
//200