Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sukeharu/45a51e0f96f57f606e83834988750feb to your computer and use it in GitHub Desktop.
Save sukeharu/45a51e0f96f57f606e83834988750feb to your computer and use it in GitHub Desktop.
オブジェクト全体ではなく、プロパティを結合することも可能
// オブジェクトのプロパティを結合することも可能
const withProp1 = {
n: 1,
o: {
prop1: 'p1',
prop2: 'p2',
},
};
const withProp2 = {
n: 1,
o: {
prop3: 'p3',
prop4: 'p4',
},
};
const concatProps = {
...withProp1.o,
...withProp2.o,
};
console.log(concatProps);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment