我正在尝试使用对象解构来提取变量,但这些变量已经存在,就像这样
const x=1, y=2 // Those should be 1 and 2
const {x,y} = complexPoint
const point = {x,y}
有没有办法在不重命名解构变量的情况下做到这一点?像这样和更新点避免const
定义?
const point = {x,y} = complexPoint
预期的结果应该是使用对象解构
const x=1, y=2 // Those should be 1 and 2
const point = {
x:complexPoint.x,
y:complexPoint.y
}