Skip to content

Instantly share code, notes, and snippets.

@fdjones
Created March 5, 2019 11:01
Show Gist options
  • Save fdjones/ca2ae1a07430b1843af77a805280f0d3 to your computer and use it in GitHub Desktop.
Save fdjones/ca2ae1a07430b1843af77a805280f0d3 to your computer and use it in GitHub Desktop.
var foo = { a: 2 };
var b = foo;
//typing b into the console returns { a: 2 }
foo = { a: 10 };
//typing b into the console still returns { a: 2 }
var foo = { a: 2 };
var b = foo;
//typing b into the console returns { a: 2 }
foo.bar = 'hi';
//typing b into the console returns { a: 2, bar: hi }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment