Skip to content

Instantly share code, notes, and snippets.

@VincentDamour
Created August 14, 2016 13:43
Show Gist options
  • Save VincentDamour/ad262422a30f1ed03d3f5cba2309710f to your computer and use it in GitHub Desktop.
Save VincentDamour/ad262422a30f1ed03d3f5cba2309710f to your computer and use it in GitHub Desktop.
var original = { foo: "bar" };
var copy = original;
copy.foo = "new value";
// copy -> { foo: "new value" } Yeah!
// original -> { foo: "new value" } Oops!
var original = { foo: "bar" };
var copy = _.cloneDeep(original);
copy.foo = "new value";
// copy -> { foo: "new value" } Yeah!
// original -> { foo: "bar" } Yeah!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment