Skip to content

Instantly share code, notes, and snippets.

@hotoo
Created March 3, 2011 06:26
Show Gist options
  • Select an option

  • Save hotoo/852429 to your computer and use it in GitHub Desktop.

Select an option

Save hotoo/852429 to your computer and use it in GitHub Desktop.
var o = {name:"hotoo"};
var a = [o];
o.name = "updated";
document.write(a[0].name); // updated
var o = {name:"hotoo"};
var a = [o];
a[0] = {name:"updated"};
document.write(o.name); // hotoo
var o = {name:"hotoo"};
var a = [o];
a[0].name = "updated";
document.write(o.name); // updated
var o = {name:"hotoo"};
var a = [o];
o = {name:"updated"};
document.write(a[0].name); // hotoo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment