Skip to content

Instantly share code, notes, and snippets.

@emkay
Created October 23, 2015 17:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save emkay/8d6a6e8e2f21152b1423 to your computer and use it in GitHub Desktop.
Save emkay/8d6a6e8e2f21152b1423 to your computer and use it in GitHub Desktop.
> const o = { make: 'that', music: 'with', your: 'mouth', biz: true}
undefined
> o
{ make: 'that', music: 'with', your: 'mouth', biz: true }
> o.make = 'nope'
'nope'
> o
{ make: 'nope', music: 'with', your: 'mouth', biz: true }
>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment