假设我们有一个具有一些值的对象
const objectWithSomeValues = {
numbers: 12345,
word: 'hello',
valueIDontWantToBeDeconstructed: [1,2,3,4,{}, null]
}
在代码的其他地方我正在解构这个对象
const someNewObject = {}
const { numbers, word } = objectWithSomeValues
/* and reassigning them to another */
someNewObject.numbers = numbers
someNewObject.word = word
有没有更优雅的方式将这些值重新分配给这个对象,也许有一个单行