いくつかの値を持つオブジェクトがあるとしましょう
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
これらの値をこのオブジェクトに再割り当てするよりエレガントな方法はありますか?