Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created July 12, 2016 02:15
Show Gist options
  • Save codecademydev/c81b55bda29406600a8a430430fd23e4 to your computer and use it in GitHub Desktop.
Save codecademydev/c81b55bda29406600a8a430430fd23e4 to your computer and use it in GitHub Desktop.
Codecademy export
var james = {
job: "programmer",
married: false
};
// set to the first property name of "james"
var aProperty = "job";
// print the value of the first property of "james"
// using the variable "aProperty"
console.log(james[aProperty]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment