Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created June 1, 2016 15:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/ed4a79c9005eb54eabc3b0a889757d9b to your computer and use it in GitHub Desktop.
Save codecademydev/ed4a79c9005eb54eabc3b0a889757d9b 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