Skip to content

Instantly share code, notes, and snippets.

@2012mjm
Created July 26, 2019 12:47
Show Gist options
  • Select an option

  • Save 2012mjm/32039598fc8e20f577f6395e3bb1890c to your computer and use it in GitHub Desktop.

Select an option

Save 2012mjm/32039598fc8e20f577f6395e3bb1890c to your computer and use it in GitHub Desktop.
let c = { greeting: "Hey!" };
let d;
d = c;
c.greeting = "Hello";
console.log(d.greeting);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment