Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created July 6, 2016 02:40
Show Gist options
  • Save codecademydev/738082f5793be63dd363da8b7ade94ae to your computer and use it in GitHub Desktop.
Save codecademydev/738082f5793be63dd363da8b7ade94ae to your computer and use it in GitHub Desktop.
Codecademy export
var bob = {
name: "Bob Smith",
age: 30
};
var susan = {
name: "Susan Jordan",
age: 25
};
// here we save Bob's information
var name1 = bob.name;
var age1 = bob.age;
// finish this code by saving Susan's information
var name2 = susan.name;
var age2 = susan.age;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment