Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created July 12, 2016 02:19
Show Gist options
  • Save codecademydev/223cceef6c76839a319b53a71b56eaf3 to your computer and use it in GitHub Desktop.
Save codecademydev/223cceef6c76839a319b53a71b56eaf3 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