Skip to content

Instantly share code, notes, and snippets.

@VincentDamour
Last active August 14, 2016 02:10
Show Gist options
  • Save VincentDamour/f53f06c800a4be66b670152756883ba3 to your computer and use it in GitHub Desktop.
Save VincentDamour/f53f06c800a4be66b670152756883ba3 to your computer and use it in GitHub Desktop.
var foo = { a: "a property" };
var bar = { b: 4, c: "an other property" }
var result = _.assign({ a: "an old property" }, foo, bar);
// result => { a: 'a property', b: 4, c: 'an other property' }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment