Skip to content

Instantly share code, notes, and snippets.

@radzionc
Created August 18, 2017 21:22
Show Gist options
  • Save radzionc/44b6cf7c066348f0040a8413ad6d7033 to your computer and use it in GitHub Desktop.
Save radzionc/44b6cf7c066348f0040a8413ad6d7033 to your computer and use it in GitHub Desktop.
cosnt one = {
a: 1,
b: 2
}
const two = {
c: 2,
d: 3
}
const merged = { ...one, ...two }
// {
// a: 1,
// b: 2,
// c: 3,
// d: 4
// }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment