Skip to content

Instantly share code, notes, and snippets.

@michaelobriena
Created September 16, 2014 00:38
Show Gist options
  • Select an option

  • Save michaelobriena/0b4b71292db09bcb9537 to your computer and use it in GitHub Desktop.

Select an option

Save michaelobriena/0b4b71292db09bcb9537 to your computer and use it in GitHub Desktop.
setOptions({
a: 'hello'
b: {
c: {},
d: []
}
});
setOptions({
b: {
c: true
}
});
yields
{
a: 'hello',
b: {
c: true,
d: []
}
}
and not
{
a: 'hello',
b: {
c: true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment