Skip to content

Instantly share code, notes, and snippets.

@lennym
Created January 12, 2016 10:13
Show Gist options
  • Save lennym/7351ff556d885c4d2c53 to your computer and use it in GitHub Desktop.
Save lennym/7351ff556d885c4d2c53 to your computer and use it in GitHub Desktop.
const a = {};
a.foo = 'bar';
console.log(a); // { foo: 'bar' }
const b = 'foo';
b += 'bar';
console.log(b); // 'foo'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment