算法题:


const obj = {
type1:{a:1,b:2},
type2: //赋值位 type1 的值 不通过中间变量实现
}


const obj = {
type1: {
a:1,
b:2
},


get type2(){
return this.type1
},
set type2(v){
this.type1=v
}
}