Skip to content

Instantly share code, notes, and snippets.

@bwiggs
Created September 17, 2010 02:27
Show Gist options
  • Save bwiggs/583554 to your computer and use it in GitHub Desktop.
Save bwiggs/583554 to your computer and use it in GitHub Desktop.
var people = {
brian: "Brian Wigginton",
denny: "Denny Cunningham"
};
var name = "brian";
alert(people.name);
// would alert "Brian Wigginton"
name = "denny";
alert(people.name);
// would alert "Denny Cunningham"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment