表示将一个对象展开插入
javascript
let obj1={x:100,y:200}
let obj2={
a:10,
b:20,
...obj1
}
最终结果为
javascript
obj2:{
a:10,
b:20,
x:100,
y:200
}