Skip to content

Instantly share code, notes, and snippets.

@igeligel
Last active June 7, 2019 21:30
Show Gist options
  • Save igeligel/1d09bbfb07eaf5f079b985a12ee39ccd to your computer and use it in GitHub Desktop.
Save igeligel/1d09bbfb07eaf5f079b985a12ee39ccd to your computer and use it in GitHub Desktop.
const defaultConfig = {
a: true,
b: false
}
const overridingConfig = {
b: true
}
const finalConfig = {
...defaultConfig,
...overridingConfig
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment